mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-11-02 23:12:59 +00:00
Fix more instances of Clang's -Wunqualified-std-cast-call
This commit is contained in:
@@ -157,8 +157,8 @@ void clean_old_shots() {
|
||||
sh.get().delete_message();
|
||||
}
|
||||
else
|
||||
remaining.emplace_back(move(sh));
|
||||
old_shots = move(remaining);
|
||||
remaining.emplace_back(std::move(sh));
|
||||
old_shots = std::move(remaining);
|
||||
*/
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user