diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2025-01-07 10:18:44 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2025-01-07 10:18:44 +0200 |
commit | aef63f308166d5f44e7b410ddd4d74a2771bc771 (patch) | |
tree | d0bb4cce9b537aba33f45447d142089e83a1c014 | |
parent | 6b83f2f2061310729a22637c7bffec7d1c248304 (diff) |
Fix config.hxx some more
-rw-r--r-- | libstudxml/details/config.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libstudxml/details/config.hxx b/libstudxml/details/config.hxx index 596e969..8e8cf95 100644 --- a/libstudxml/details/config.hxx +++ b/libstudxml/details/config.hxx @@ -4,11 +4,11 @@ #ifndef LIBSTUDXML_DETAILS_CONFIG_HXX #define LIBSTUDXML_DETAILS_CONFIG_HXX -// Note that MSVC 14.3 (1930) does not define suitable __cplusplus but +// Note that MSVC 14.3 (1900) does not define suitable __cplusplus but // supports C++11. // #if !defined(__cplusplus) || __cplusplus < 201103L -# if !defined(_MSC_VER) || _MSC_VER < 1930 +# if !defined(_MSC_VER) || _MSC_VER < 1900 # error C++11 is required # endif #endif |