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.
This commit is contained in:
Martin Hořeňovský 2024-02-13 00:01:13 +01:00
parent 0787132fc8
commit 4570fca24b
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
1 changed files with 0 additions and 4 deletions

View File

@ -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