Skip to content

Commit

Permalink
Update wincolor_sinks to be final
Browse files Browse the repository at this point in the history
  • Loading branch information
gabime authored Nov 24, 2024
1 parent 43dcb39 commit 873ae7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/spdlog/sinks/wincolor_sink.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ class wincolor_sink : public sink {
};

template <typename ConsoleMutex>
class wincolor_stdout_sink : public wincolor_sink<ConsoleMutex> {
class wincolor_stdout_sink final : public wincolor_sink<ConsoleMutex> {
public:
explicit wincolor_stdout_sink(color_mode mode = color_mode::automatic);
};

template <typename ConsoleMutex>
class wincolor_stderr_sink : public wincolor_sink<ConsoleMutex> {
class wincolor_stderr_sink final : public wincolor_sink<ConsoleMutex> {
public:
explicit wincolor_stderr_sink(color_mode mode = color_mode::automatic);
};
Expand Down

0 comments on commit 873ae7c

Please sign in to comment.