Enforce Allman style for do {

This commit is contained in:
Sebastian Wilzbach 2016-12-09 17:39:47 +01:00
parent b100b859a5
commit c352281212
3 changed files with 13 additions and 6 deletions

View file

@ -1009,7 +1009,8 @@ private:
if (comp(next.front, r.front))
{
do {
do
{
next.popFront();
if (next.empty) return;
} while (comp(next.front, r.front));