Skip to content

Commit

Permalink
one more time on the windows build battle
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrush committed Nov 16, 2020
1 parent bbcec50 commit 5aab79a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/libs/conduit/conduit_config.h.in
Expand Up @@ -45,8 +45,10 @@
// if built with c++11 support, make sure a c++11 compiler is used
//-----------------------------------------------------------------------------
#if defined(CONDUIT_USE_CXX11)
#if defined(_MSC_VER) && _MSC_VER < 1900
#error Conduit was built with c++11 support, please use a c++11 compliant compiler
#if defined(_MSC_VER)
#if _MSC_VER < 1900
#error Conduit was built with c++11 support, please use a c++11 compliant compiler
#endif
#elif __cplusplus <= 199711L
#error Conduit was built with c++11 support, please use a c++11 compliant compiler
#endif
Expand Down

0 comments on commit 5aab79a

Please sign in to comment.