Exception handling (programming): Difference between revisions

Content deleted Content added
No edit summary
Tags: Mobile edit Mobile app edit iOS app edit App section source
No edit summary
Tags: Mobile edit Mobile app edit iOS app edit App section source
Line 194:
void mightThrow();
 
// The first noexcept is the specifiernoexcept clause, the second is the noexcept operator which evaluates to a Boolean value
void f() noexcept(noexcept(mightThrow));
</syntaxhighlight>