Use C++11 for loops, from clang-migrate. No functional change intended

This commit is contained in:
Wilson Snyder
2020-11-10 22:10:38 -05:00
parent 44eb362a18
commit 79d33bf1ee
39 changed files with 152 additions and 199 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ struct GraphPCNode {
// CONSTRUCTORS
GraphPCNode() {
for (int w = 0; w < GraphWay::NUM_WAYS; w++) m_cp[w] = 0;
for (unsigned int& w : m_cp) w = 0;
}
~GraphPCNode() {}
};