Compiler Warning (level 1) C4326

 

The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.

The latest version of this topic can be found at Compiler Warning (level 1) C4326.

return type of 'function' should be 'type1' instead of 'type2'

A function returned a type other than type1. For example, using /Za, main did not return an int.

The following sample generates C4326:

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

Show: