Skip to content
  • Paul Gessinger-Befurt's avatar
    Do not use namespace std in Printout.cpp · c280a272
    Paul Gessinger-Befurt authored
    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.
    c280a272