Replaced SPDLOG_FINAL macro with final

This commit is contained in:
gabime 2018-09-26 14:45:38 +03:00
parent 65defd3806
commit ca8accbaa8

View File

@ -14,7 +14,7 @@
namespace spdlog {
namespace sinks {
template<typename Mutex>
class ostream_sink SPDLOG_FINAL : public base_sink<Mutex>
class ostream_sink final : public base_sink<Mutex>
{
public:
explicit ostream_sink(std::ostream &os, bool force_flush = false)