Hi, I have read this on IBM:
An exception specification may only appear at the end of a function declarator of a function, pointer to function, reference to function, pointer to member function declaration, or pointer to member function definition. An exception specification cannot appear in a typedef declaration. The following declarations demonstrate this:
Can anyone write me an example of reference to function (so it contains exception specification with it)?
And another question about syntax I can't understand. What does this mean:
void h(void i() throw(int));
Thanks.