From 81e821b60cc54ecc8e7003b14b61d2ef4266e6e7 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Mon, 2 Mar 2015 12:42:33 +0100 Subject: [PATCH] Make copy constructor private for the Log class --- lib/base/logger.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/base/logger.hpp b/lib/base/logger.hpp index 67a1ec89b..2d10a1334 100644 --- a/lib/base/logger.hpp +++ b/lib/base/logger.hpp @@ -137,6 +137,7 @@ private: std::ostringstream m_Buffer; Log(void); + Log(const Log& other); Log& operator=(const Log& rhs); };