Update clang-format to disallow single line for-loops

This commit is contained in:
Thraix
2026-08-23 12:12:53 +02:00
parent ab6c726ebc
commit 988c5552d0
22 changed files with 79 additions and 40 deletions
+2 -1
View File
@@ -77,7 +77,8 @@ namespace y$1::day13
Node node;
node.nodes = std::stoi(str.substr(index));
nodes.emplace_back(node);
while (str[index] >= '0' && str[index] <= '9') index++;
while (str[index] >= '0' && str[index] <= '9')
index++;
}
else
{