Compiler Error C2279
Visual Studio 2005
Error Message
exception specification cannot appear in a typedef declarationUnder /Za, exception specifications are not allowed in a typedef declaration.
The following sample generates C2279:
// C2279.cpp // compile with: /Za /c typedef int (*xx)() throw(...); // C2279 typedef int (*xxx)(); // OK