共用方式為


編譯器警告 (層級 1) C4600

#pragma 'macro name' :必須是有效的非空白字串

當您使用pop_macro push_macro 推送或快顯宏名稱 時,您無法指定空字串。

下列範例會產生 C4600:

// C4600.cpp
// compile with: /W1
int main()
{
   #pragma push_macro("")   // C4600 passing an empty string
}