共用方式為


編譯器警告 (層級 3) C4646

使用 __declspec(noreturn) 宣告的函式有非 void 的傳回類型

標記為 noreturn__declspec 修飾詞的函式應該有 void 傳回類型。

下列範例會產生 C4646:

// C4646.cpp
// compile with: /W3 /WX
int __declspec(noreturn) TestFunction()
{   // C4646  make return type void
}