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 |
|
|
29507f8a-b024-42c1-a3b8-f35d1f2641f3 |
'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.