编译器警告(等级 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() {
}