mirror of
https://github.com/zeromq/cppzmq.git
synced 2024-12-13 10:52:57 +01:00
Problem: C++14 features not detected using MSVC
Solution: Detect C++14 via C++17
This commit is contained in:
parent
1f66e996d5
commit
e5f1a2d045
4
zmq.hpp
4
zmq.hpp
@ -30,7 +30,9 @@
|
||||
#if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(_MSC_VER) && _MSC_VER >= 1900)
|
||||
#define ZMQ_CPP11
|
||||
#endif
|
||||
#if (defined(__cplusplus) && __cplusplus >= 201402L) || (defined(_HAS_CXX14) && _HAS_CXX14 == 1)
|
||||
#if (defined(__cplusplus) && __cplusplus >= 201402L) || \
|
||||
(defined(_HAS_CXX14) && _HAS_CXX14 == 1) || \
|
||||
(defined(_HAS_CXX17) && _HAS_CXX17 == 1) // _HAS_CXX14 might not be defined when using C++17 on MSVC
|
||||
#define ZMQ_CPP14
|
||||
#endif
|
||||
#if (defined(__cplusplus) && __cplusplus >= 201703L) || (defined(_HAS_CXX17) && _HAS_CXX17 == 1)
|
||||
|
Loading…
Reference in New Issue
Block a user