From dc24a858f29bdbb175505363c953e0c81aa2dce4 Mon Sep 17 00:00:00 2001 From: gabime Date: Fri, 3 May 2024 18:46:12 +0300 Subject: [PATCH] Removed redundant inline keyword --- include/spdlog/sinks/basic_file_sink.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/spdlog/sinks/basic_file_sink.h b/include/spdlog/sinks/basic_file_sink.h index a30e1dfa..fa1e202a 100644 --- a/include/spdlog/sinks/basic_file_sink.h +++ b/include/spdlog/sinks/basic_file_sink.h @@ -39,7 +39,7 @@ using basic_file_sink_st = basic_file_sink; // factory functions // template -inline std::shared_ptr basic_logger_mt(const std::string &logger_name, +std::shared_ptr basic_logger_mt(const std::string &logger_name, const filename_t &filename, bool truncate = false, const file_event_handlers &event_handlers = {}) { @@ -47,7 +47,7 @@ inline std::shared_ptr basic_logger_mt(const std::string &logger_name, } template -inline std::shared_ptr basic_logger_st(const std::string &logger_name, +std::shared_ptr basic_logger_st(const std::string &logger_name, const filename_t &filename, bool truncate = false, const file_event_handlers &event_handlers = {}) {