mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-09-10 06:16:00 +00:00
Qualify calls to format
C++20 introduces `std::format` and we `using namespace std`, so some of these would be ambiguous in C++20.
This commit is contained in:
@@ -31,7 +31,7 @@ void build(crystal::coord co, int at) {
|
||||
if(WDIM == 3) c->wall = waWaxWall;
|
||||
}
|
||||
|
||||
println(hlog, co, " twos = ", twos, " index = ", index, " set = ", format("%06X", c->landparam));
|
||||
println(hlog, co, " twos = ", twos, " index = ", index, " set = ", hr::format("%06X", c->landparam));
|
||||
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user