mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-09-11 06:45:59 +00:00
Fix more instances of Clang's -Wunqualified-std-cast-call
This commit is contained in:
@@ -190,7 +190,7 @@ void expansion_analyzer::reduce_grouping() {
|
||||
for(int i=0; i<nogroups; i++)
|
||||
for(int j: children[groupsample[i]])
|
||||
newchildren[i].push_back(grouping[j]);
|
||||
children = move(newchildren);
|
||||
children = std::move(newchildren);
|
||||
for(auto& p: codeid) p.second = grouping[p.second];
|
||||
N = nogroups;
|
||||
rootid = grouping[rootid];
|
||||
@@ -1082,4 +1082,4 @@ EX int hyperbolic_celldistance(cell *c1, cell *c2) {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user