zeromq / cppzmq

Header-only C++ binding for libzmq
http://www.zeromq.org
MIT License
1.93k stars 757 forks source link

Suppress ZMQ_EXTENDED_CONSTEXPR on gcc with partial C++14 support #553

Closed gin-ahirsch closed 2 years ago

gin-ahirsch commented 2 years ago

cf. https://gcc.gnu.org/projects/cxx-status.html#cxx14

gin-ahirsch commented 2 years ago

Had to change from checking __cpp_constexpr to a specific gcc version. Looks like gcc <= 5.3 errors, but still defines __cpp_constexpr to 201304 so that's insufficient.

coveralls commented 2 years ago

Pull Request Test Coverage Report for Build 2280258814


Totals Coverage Status
Change from base Build 1383071410: 0.0%
Covered Lines: 801
Relevant Lines: 931

💛 - Coveralls
gummif commented 2 years ago

Thanks