zeromq / cppzmq

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

Fixes warning noexcept #581

Closed ThibaultDECO closed 1 year ago

ThibaultDECO commented 1 year ago

This type of function should not throw, adding noexcept

coveralls commented 1 year ago

Pull Request Test Coverage Report for Build 3256135122


Totals Coverage Status
Change from base Build 3222337817: 0.0%
Covered Lines: 803
Relevant Lines: 931

💛 - Coveralls
gummif commented 1 year ago

You must use the ZMQ_NOTHROW macro instead of noexcept for compatibility.

ThibaultDECO commented 1 year ago

Done, thanks!

gummif commented 1 year ago

Thanks