From 5693ceca749e91d222667e930d521630dba8b256 Mon Sep 17 00:00:00 2001 From: Andrei Kortunov Date: Tue, 4 Sep 2018 17:56:19 +0400 Subject: [PATCH] Remove redundant declaration --- components/debug/debuglog.hpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/components/debug/debuglog.hpp b/components/debug/debuglog.hpp index 1ea18aa9b7..f4a8e17bef 100644 --- a/components/debug/debuglog.hpp +++ b/components/debug/debuglog.hpp @@ -43,14 +43,6 @@ public: return *this; } - template - Log& operator<<(const T& rhs) - { - if (mLevel <= Debug::CurrentDebugLevel) - std::cout << std::forward(rhs); - - return *this; - } ~Log() {