1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-28 12:27:40 +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

@@ -91,7 +91,7 @@ void loadsamples(const string& fname) {
if(c == '!' && s.name == "") shown = true;
else if(!rv_ignore(c)) s.name += c;
}
data.push_back(move(s));
data.push_back(std::move(s));
if(shown)
samples_to_show.push_back(isize(data)-1);
}
@@ -624,7 +624,7 @@ void verify_crawlers() {
breakcheck:
cellcrawler cr;
cr.build(cellwalker(c, id.second));
allcrawlers[id.first] = move(cr);
allcrawlers[id.first] = std::move(cr);
uniq++;
}
}