编译器警告(等级 1)C4326

“function”的返回类型应为“type1”而不是“type2”

备注

函数返回了 type1 以外的类型。 例如,使用了 /Za,main 未返回 int

示例

以下示例生成 C4326,并演示如何对其进行修复:

// C4326.cpp
// compile with: /Za /W1
char main()
{
    // C4326, instead use int main()
}