From 4570fca24b2fd04f82f2376b090abfa5dde965c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Tue, 13 Feb 2024 00:01:13 +0100 Subject: [PATCH] Remove obsolete C++14 define There is no reason to have code conditional on C++14, because C++14 is the minimum supported language standard for v3. --- src/catch2/internal/catch_compiler_capabilities.hpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/catch2/internal/catch_compiler_capabilities.hpp b/src/catch2/internal/catch_compiler_capabilities.hpp index fc76937c..7f09da51 100644 --- a/src/catch2/internal/catch_compiler_capabilities.hpp +++ b/src/catch2/internal/catch_compiler_capabilities.hpp @@ -29,10 +29,6 @@ #ifdef __cplusplus -# if (__cplusplus >= 201402L) || (defined(_MSVC_LANG) && _MSVC_LANG >= 201402L) -# define CATCH_CPP14_OR_GREATER -# endif - # if (__cplusplus >= 201703L) || (defined(_MSVC_LANG) && _MSVC_LANG >= 201703L) # define CATCH_CPP17_OR_GREATER # endif