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.
expected pragma parameter to be 'restore' or 'off'
A pragma was passed an invalid value.
The following sample generates C4097:
// C4097.cpp
// compile with: /W1
#pragma runtime_checks("",test) // C4097
// try the following line instead
// #pragma runtime_checks("",off)
int main() {
}