编译器警告(等级 1)C4006

#undef 应输入标识符

#undef 指令未指定要取消定义的标识符。 指令被忽略。 若要解决此警告,请确保指定一个标识符。 以下示例生成 C4006:

// C4006.cpp
// compile with: /W1
#undef   // C4006

// try..
// #undef TEST

int main() {
}