次の方法で共有


コンパイラの警告 (レベル 3) C4645

__declspec(noreturn) で宣言された関数に return ステートメントがあります。

noreturn__declspec 修飾子でマークされている関数内に return ステートメントが見つかりました。 return ステートメントは無視されました。

次の例では C4645 が生成されます。

// C4645.cpp
// compile with:  /W3
void __declspec(noreturn) func() {
   return;   // C4645, delete this line to resolve
}

int main() {
}