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.
'construct' : only allowed at file scope; may not be in a nested construct
Constructs, such as some pragmas, can only appear at global scope.
The following sample generates C2850:
// C2850.cpp
// compile with: /c /Yc
// try the following line instead
// #pragma hdrstop
namespace X {
#pragma hdrstop // C2850
};