Replaced SPDLOG_FINAL macro with final

This commit is contained in:
gabime
2018-09-26 14:33:37 +03:00
parent be7e7237e9
commit 65defd3806
9 changed files with 39 additions and 55 deletions

View File

@@ -24,7 +24,7 @@ namespace sinks {
// Rotating file sink based on size
//
template<typename Mutex>
class rotating_file_sink SPDLOG_FINAL : public base_sink<Mutex>
class rotating_file_sink final : public base_sink<Mutex>
{
public:
rotating_file_sink(filename_t base_filename, std::size_t max_size, std::size_t max_files)