mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-08-30 09:17:57 +00:00
Fix more instances of Clang's -Wunqualified-std-cast-call
This commit is contained in:
@@ -2082,7 +2082,7 @@ EX namespace heat {
|
||||
}
|
||||
}
|
||||
|
||||
offscreen_heat = move(offscreen2);
|
||||
offscreen_heat = std::move(offscreen2);
|
||||
|
||||
for(int i=0; i<numplayers(); i++) {
|
||||
cell *c = playerpos(i);
|
||||
@@ -2329,7 +2329,7 @@ EX namespace heat {
|
||||
}
|
||||
}
|
||||
|
||||
offscreen_fire = move(offscreen2);
|
||||
offscreen_fire = std::move(offscreen2);
|
||||
}
|
||||
|
||||
EX }
|
||||
|
Reference in New Issue
Block a user