Removed unnecessary default constructors.

This commit is contained in:
2016-11-24 13:46:11 +01:00
parent 4795284413
commit 8a587eb57a

View File

@@ -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();