mirror of
https://github.com/zeromq/cppzmq.git
synced 2024-12-13 10:52:57 +01:00
Suppress ZMQ_EXTENDED_CONSTEXPR on gcc with partial C++14 support
This commit is contained in:
parent
dd663fafd8
commit
b9f6e06a16
2
zmq.hpp
2
zmq.hpp
@ -94,7 +94,7 @@
|
||||
#define ZMQ_CONSTEXPR_VAR const
|
||||
#define ZMQ_CPP11_DEPRECATED(msg)
|
||||
#endif
|
||||
#if defined(ZMQ_CPP14) && (!defined(_MSC_VER) || _MSC_VER > 1900)
|
||||
#if defined(ZMQ_CPP14) && (!defined(_MSC_VER) || _MSC_VER > 1900) && (!defined(__GNUC__) || __GNUC__ > 5 || (__GNUC__ == 5 && __GNUC_MINOR__ > 3))
|
||||
#define ZMQ_EXTENDED_CONSTEXPR
|
||||
#endif
|
||||
#if defined(ZMQ_CPP17)
|
||||
|
Loading…
Reference in New Issue
Block a user