diff options
Diffstat (limited to 'src/core/common/Logger.hpp')
-rw-r--r-- | src/core/common/Logger.hpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/core/common/Logger.hpp b/src/core/common/Logger.hpp index 479160b..433aa31 100644 --- a/src/core/common/Logger.hpp +++ b/src/core/common/Logger.hpp @@ -269,12 +269,6 @@ public: // Default constructor Logger() {} - // No copy - Logger(const Logger &) = delete; - - // No assign - Logger &operator=(const Logger &) = delete; - /** * Logs the given message. The file name is set to the topmost file name on * the file name stack. @@ -601,14 +595,6 @@ protected: SourceContextCallback sourceContextCallback) override; public: - // Default move constructor - LoggerFork(LoggerFork &&l) - : calls(std::move(l.calls)), - messages(std::move(l.messages)), - locations(std::move(l.locations)), - callbacks(std::move(l.callbacks)), - parent(std::move(l.parent)){}; - /** * Commits all collected messages to the parent Logger instance. */ |