Exception handling (programming): Difference between revisions

Content deleted Content added
Line 217:
 
// The first noexcept is the noexcept clause, the second is the noexcept operator which evaluates to a Boolean value
void f() noexcept(noexcept(mightThrow()));
</syntaxhighlight>