於檔案範圍找到 '{' (遺漏函式標頭?)
備註
開啟大括弧會在檔案範圍發生。
此錯誤可能是因為函式標頭與函式定義左大括弧之間的分號所造成。
Example
以下範例產生 C2449:
// C2449.c
// compile with: /c
void __stdcall func(void) {} // OK
void __stdcall func(void); // extra semicolon on this line
{ // C2449 detected here