libev icon indicating copy to clipboard operation
libev copied to clipboard

Fix usage with C++17

Open granthenke opened this issue 5 years ago • 0 comments

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).

granthenke avatar Nov 23 '20 23:11 granthenke