Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 884 Bytes

compiler-warning-level-1-c4716.md

File metadata and controls

32 lines (25 loc) · 884 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 1) C4716
Compiler Warning (level 1) C4716
11/04/2016
C4716
C4716
d95ecfe5-870f-461f-a746-7913af98414b

Compiler Warning (level 1) C4716

'function' must return a value

The given function did not return a value.

Only functions with a return type of void can use the return command without an accompanying return value.

An undefined value will be returned when this function is called.

This warning is automatically promoted to an error. If you wish to modify this behavior, use #pragma warning.

The following sample generates C4716:

// C4716.cpp
// compile with: /c /W1
// C4716 expected
#pragma warning(default:4716)
int test() {
   // uncomment the following line to resolve
   // return 0;
}