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

@@ -18,7 +18,7 @@ namespace sinks {
* Trivial file sink with single file as target
*/
template<typename Mutex>
class basic_file_sink SPDLOG_FINAL : public base_sink<Mutex>
class basic_file_sink final : public base_sink<Mutex>
{
public:
explicit basic_file_sink(const filename_t &filename, bool truncate = false)