cppcoreguidelines-avoid-do-while¶
Warns when using do-while
loops. They are less readable than plain while
loops, since the termination condition is at the end and the condition is not
checked prior to the first iteration. This can lead to subtle bugs.
The check implements rule ES.75 of C++ Core Guidelines.
Examples:
int x;
do {
std::cin >> x;
// ...
} while (x < 0);