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.
'identifier' : 'nothrow' can only be applied to function declarations or definitions
The nothrow extended attribute can be applied to function declarations or definitions only.
The following sample generates C2495:
// C2495.cpp
// compile with: /c
__declspec(nothrow) class X { // C2495
int m_data;
} x;
__declspec(nothrow) void test(); // OK