Removed unnecessary default constructors.

This commit is contained in:
Patrick Lühne 2016-11-24 13:46:11 +01:00
parent 4795284413
commit 8a587eb57a
Signed by: patrick
GPG Key ID: 05F3611E97A70ABF
1 changed files with 0 additions and 6 deletions

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