コンパイラの警告 (レベル 1) C4097
プラグマ パラメーターに 'restore' または 'off' が必要です。
プラグマに無効な値が渡されました。
次の例では C4097 が生成されます。
// C4097.cpp
// compile with: /W1
#pragma runtime_checks("",test) // C4097
// try the following line instead
// #pragma runtime_checks("",off)
int main() {
}