Fixed multiple clang-tidy warnings

This commit is contained in:
gabime
2020-04-08 17:04:10 +03:00
parent 0c56f98a92
commit c16eb80d7f
6 changed files with 33 additions and 15 deletions

View File

@@ -19,8 +19,12 @@ public:
using mutex_t = typename ConsoleMutex::mutex_t;
explicit stdout_sink_base(FILE *file);
~stdout_sink_base() override = default;
stdout_sink_base(const stdout_sink_base &other) = delete;
stdout_sink_base(stdout_sink_base &&other) = delete;
stdout_sink_base &operator=(const stdout_sink_base &other) = delete;
stdout_sink_base &operator=(stdout_sink_base &&other) = delete;
void log(const details::log_msg &msg) override;
void flush() override;