From 8a587eb57a53283258180f8d0202a72cc0d1d518 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20L=C3=BChne?= Date: Thu, 24 Nov 2016 13:46:11 +0100 Subject: [PATCH] Removed unnecessary default constructors. --- include/anthem/output/Logger.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/include/anthem/output/Logger.h b/include/anthem/output/Logger.h index 4d695b1..fd54482 100644 --- a/include/anthem/output/Logger.h +++ b/include/anthem/output/Logger.h @@ -23,12 +23,6 @@ class Logger public: Logger(); - Logger(const Logger &other) = default; - Logger &operator=(const Logger &other) = default; - - Logger(Logger &&other) = default; - Logger &operator=(Logger &&other) = default; - ColorStream &outputStream(); ColorStream &errorStream();