Compiler Warning C4986

 

The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.

The latest version of this topic can be found at Compiler Warning C4986.

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.

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*)  
{  
    // ...  
}  
  

Show: