fixed "final" keyword error

This commit is contained in:
gabime 2017-05-21 04:02:32 +03:00
parent d56fa23eb9
commit 42a56f6669
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ namespace sinks
* If no color terminal detected, omit the escape codes.
*/
template <class Mutex>
class ansicolor_sink SPDLOG_FINAL: public base_sink<Mutex>
class ansicolor_sink: public base_sink<Mutex>
{
public:
ansicolor_sink(FILE* file): target_file_(file)