Do not use namespace std in Printout.cpp
Fundamentally, I get compile errors because `__format` in the anonymous namespace is shadowed by `std::__format`. Rather than renaming the function, I just remove the `using namespace std;` and prefix all relevant symbols in that file.
Loading
Please register or sign in to comment