fix: Allow MSVC to have old version

This commit is contained in:
ToruNiina 2021-12-18 00:36:20 +09:00
parent 4522070391
commit 7354e91924

View File

@ -35,7 +35,7 @@
# define TOML11_CPLUSPLUS_STANDARD_VERSION __cplusplus # define TOML11_CPLUSPLUS_STANDARD_VERSION __cplusplus
#endif #endif
#if TOML11_CPLUSPLUS_STANDARD_VERSION < 201103L #if TOML11_CPLUSPLUS_STANDARD_VERSION < 201103L && _MSC_VER < 1900
# error "toml11 requires C++11 or later." # error "toml11 requires C++11 or later."
#endif #endif