fix consteval macro

pull/2690/head
M. Galib Uludag 2 years ago committed by GitHub
parent d8a6ab64b4
commit 1358eafb64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -121,9 +121,9 @@
#if SPDLOG_CPLUSPLUS > 201703L #if SPDLOG_CPLUSPLUS > 201703L
#define SPDLOG_CONSTEVAL consteval #define SPDLOG_CONSTEVAL consteval
#elif SPDLOG_CPLUSPLUS < 201402L #elif SPDLOG_CPLUSPLUS < 201402L
#define SPDLOG_CONSTEVAL constexpr
#else
#define SPDLOG_CONSTEVAL #define SPDLOG_CONSTEVAL
#else
#define SPDLOG_CONSTEVAL constexpr
#endif #endif
namespace spdlog { namespace spdlog {

Loading…
Cancel
Save