1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-07 12:57:57 +00:00

Fix more instances of Clang's -Wunqualified-std-cast-call

This commit is contained in:
Arthur O'Dwyer
2022-07-05 13:23:05 -04:00
parent 85753d240f
commit 0ae74aad62
17 changed files with 32 additions and 32 deletions

View File

@@ -148,7 +148,7 @@ EX namespace brownian {
EX void apply_futures(cell *c) {
if(futures.count(c)) {
auto m = move(futures[c]);
auto m = std::move(futures[c]);
futures.erase(c);
for(auto p: m)
recurse(p.first, p.second);