Backed out changeset b190a7268dd4 (bug 958596)

This commit is contained in:
Ed Morley 2014-02-25 17:17:23 +00:00
parent 0e623ef42d
commit 6cdcc99b9d

View File

@ -86,7 +86,6 @@ public:
Log() {}
~Log() { mMessage << '\n'; WriteLog(mMessage.str()); }
Log &operator <<(char aChar) { mMessage << aChar; return *this; }
Log &operator <<(const std::string &aLogText) { mMessage << aLogText; return *this; }
Log &operator <<(const char aStr[]) { mMessage << static_cast<const char*>(aStr); return *this; }
Log &operator <<(bool aBool) { mMessage << (aBool ? "true" : "false"); return *this; }