Share via

Facebook x.com LinkedIn Email

15.4 Function Exception Specifiers

Function exception specifiers other than throw() are parsed but not used. For example:

void f() throw(int); // parsed but not used
void g() throw(); // parsed and used 

For more information on exception specifications, see Exception Specifications.

See Also

Other Resources

Nonstandard Behavior


  • Last updated on 2013年02月01日