Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'function': exception specification does not match previous declaration
This warning can be generated when there is an exception specification in one declaration and not the other.
By default, C4986 is off. For more information, see Compiler Warnings That Are Off by Default.
Examples
The following sample generates C4986.
class X { };
void f1() throw (X*);
// ...
void f1()
{
// ...
}
The following sample eliminates this warning.
class X { };
void f1() throw (X*);
// ...
void f1() throw (X*)
{
// ...
}