Compiler Error C2279
Visual Studio 2015
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 Error C2279.
exception specification cannot appear in a typedef declaration
Under /Za, exception specifications are not allowed in a typedef declaration.
The following sample generates C2279:
// C2279.cpp // compile with: /Za /c typedef int (*xy)() throw(...); // C2279 typedef int (*xyz)(); // OK
Show: