Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 649 Bytes

compiler-warning-level-4-c4718.md

File metadata and controls

13 lines (11 loc) · 649 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 4) C4718
Compiler Warning (level 4) C4718
11/04/2016
C4718
C4718
29507f8a-b024-42c1-a3b8-f35d1f2641f3

Compiler Warning (level 4) C4718

'function call' : recursive call has no side effects, deleting

A function contains a recursive call, but otherwise has no side effects. A call to this function is being deleted. The correctness of the program is not affected, but the behavior is. Whereas leaving the call in could result in a runtime stack overflow exception, deleting the call removes that possibility.