1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 21:01:16 +02:00

stdout_ -> cout

Better to get creative than just sprinkle arbitrary underscores.
This commit is contained in:
John Ericson 2020-09-25 11:30:04 -04:00
parent ec14465a00
commit cfe791a638
11 changed files with 33 additions and 33 deletions

View file

@ -100,7 +100,7 @@ public:
virtual void writeToStdout(std::string_view s);
template<typename... Args>
inline void stdout_(const std::string & fs, const Args & ... args)
inline void cout(const std::string & fs, const Args & ... args)
{
boost::format f(fs);
formatHelper(f, args...);