pragma 參數必須為 'restore' 或 'off'
備註
傳遞的 pragma 具有無效的值。
Example
下列範例會產生 C4097:
// C4097.cpp
// compile with: /W1
#pragma runtime_checks("",test) // C4097
// try the following line instead
// #pragma runtime_checks("",off)
int main() {
}
pragma 參數必須為 'restore' 或 'off'
傳遞的 pragma 具有無效的值。
下列範例會產生 C4097:
// C4097.cpp
// compile with: /W1
#pragma runtime_checks("",test) // C4097
// try the following line instead
// #pragma runtime_checks("",off)
int main() {
}