mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-09-21 11:34:04 +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:
@@ -397,7 +397,7 @@ void wfc() {
|
||||
|
||||
if(isize(freq)) println(hlog, "last freq = ", freq[0].prob);
|
||||
println(hlog, "freq size = ", isize(freq));
|
||||
println(hlog, "tfreq = ", format("%lld", tfreq));
|
||||
println(hlog, "tfreq = ", hr::format("%lld", tfreq));
|
||||
println(hlog, "trans size = ", isize(trans));
|
||||
println(hlog, "next code = ", nextcode);
|
||||
clearMessages();
|
||||
|
Reference in New Issue
Block a user