Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ev++.h
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ namespace ev {
struct dynamic_loop : loop_ref
{

dynamic_loop (unsigned int flags = AUTO) throw (bad_loop)
dynamic_loop (unsigned int flags = AUTO) noexcept(false)
: loop_ref (ev_loop_new (flags))
{
if (!EV_AX)
Expand All @@ -376,7 +376,7 @@ namespace ev {

struct default_loop : loop_ref
{
default_loop (unsigned int flags = AUTO) throw (bad_loop)
default_loop (unsigned int flags = AUTO) noexcept(false)
#if EV_MULTIPLICITY
: loop_ref (ev_default_loop (flags))
#endif
Expand Down