Expand Minimize
11 out of 21 rated this helpful - Rate this topic

Compiler Warning (level 3) C4290

Error Message

C++ exception specification ignored except to indicate a function is not __declspec(nothrow)

A function is declared using exception specification, which Visual C++ accepts but does not implement. Code with exception specifications that are ignored during compilation may need to be recompiled and linked to be reused in future versions supporting exception specifications.

For more information, see Exception Specifications .

You can avoid this warning by using the warning pragma:

#pragma warning( disable : 4290 )

The following code sample generates C4290:

// C4290.cpp
// compile with: /EHs /W3 /c
void f1(void) throw(int) {}   // C4290

// OK
void f2(void) throw() {}
void f3(void) throw(...) {}
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.