Commit 59159387e9d6f18218954580e5ff276604134bac

Authored by RangeMachine
Committed by GitHub
1 parent e29cb3f1

fix: MSVC C++20 macro typo (#706)

Showing 1 changed file with 1 additions and 1 deletions
include/CLI/Macros.hpp
... ... @@ -26,7 +26,7 @@
26 26 #define CLI11_CPP14
27 27 #if _MSVC_LANG > 201402L && _MSC_VER >= 1910
28 28 #define CLI11_CPP17
29   -#if __MSVC_LANG > 201703L && _MSC_VER >= 1910
  29 +#if _MSVC_LANG > 201703L && _MSC_VER >= 1910
30 30 #define CLI11_CPP20
31 31 #endif
32 32 #endif
... ...