Enable consteval in MSVC VS2019 version 16.10 (#3757)

Signed-off-by: Vladislav Shchapov <vladislav@shchapov.ru>
This commit is contained in:
Vladislav Shchapov 2023-12-19 02:00:11 +05:00 committed by GitHub
parent b8f81dede5
commit 9165434e5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -227,8 +227,9 @@
__apple_build_version__ >= 14000029L) && \ __apple_build_version__ >= 14000029L) && \
FMT_CPLUSPLUS >= 202002L) || \ FMT_CPLUSPLUS >= 202002L) || \
(defined(__cpp_consteval) && \ (defined(__cpp_consteval) && \
(!FMT_MSC_VERSION || _MSC_FULL_VER >= 193030704)) (!FMT_MSC_VERSION || FMT_MSC_VERSION >= 1929))
// consteval is broken in MSVC before VS2022 and Apple clang before 14. // consteval is broken in MSVC before VS2019 version 16.10 and Apple clang
// before 14.
# define FMT_CONSTEVAL consteval # define FMT_CONSTEVAL consteval
# define FMT_HAS_CONSTEVAL # define FMT_HAS_CONSTEVAL
# else # else