History of Idiom 50 > diff from v68 to v69
Edit summary for version 69 by programming-idioms.org:
[C++] Warning: infinite loop without side-effects is undefined behaviour.
[C++] Warning: infinite loop without side-effects is undefined behaviour.
↷
Version 68
2021-05-25, 11:43:50
Version 69
2021-05-25, 11:44:14
Idiom #50 Make an infinite loop
Write a loop which has no end clause.

Idiom #50 Make an infinite loop
Write a loop which has no end clause.

Comments bubble
The compiler might warn you that the loop expression is never false.
Comments bubble
The compiler might warn you that the loop expression is never false.
Warning: infinite loop without side-effects is undefined behaviour.