Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 710 Bytes

compiler-warning-level-1-c4326.md

File metadata and controls

28 lines (22 loc) · 710 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 1) C4326
Compiler Warning (level 1) C4326
08/27/2018
C4326
C4326
d44d2c4e-9456-42d3-b35b-4ba4b2d42ec7

Compiler Warning (level 1) C4326

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

Remarks

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

Example

The following sample generates C4326 and shows how to fix it:

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