libev
libev copied to clipboard
Fix usage with C++17
When using with C++17 I got the following error: ev++.h:355:46: error: ISO C++1z does not allow dynamic exception specifications dynamic_loop (unsigned int flags = AUTO) throw (bad_loop)
This patch fixes the error by replacing throw (bad_loop)
with noexcept(false).