From 231ca50700fa0e381da773b0546f5cc8861db1cf Mon Sep 17 00:00:00 2001 From: gabime Date: Sat, 26 Sep 2020 15:34:05 +0300 Subject: clang-format --- include/spdlog/spdlog.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'include/spdlog/spdlog.h') diff --git a/include/spdlog/spdlog.h b/include/spdlog/spdlog.h index 4bd126bd..bac5d26f 100644 --- a/include/spdlog/spdlog.h +++ b/include/spdlog/spdlog.h @@ -31,7 +31,7 @@ using default_factory = synchronous_factory; // Example: // spdlog::create("logger_name", "dailylog_filename", 11, 59); template -inline std::shared_ptr create(std::string logger_name, SinkArgs &&... sink_args) +inline std::shared_ptr create(std::string logger_name, SinkArgs &&...sink_args) { return default_factory::create(std::move(logger_name), std::forward(sink_args)...); } @@ -128,49 +128,49 @@ SPDLOG_API spdlog::logger *default_logger_raw(); SPDLOG_API void set_default_logger(std::shared_ptr default_logger); template -inline void log(source_loc source, level::level_enum lvl, const FormatString &fmt, const Args &... args) +inline void log(source_loc source, level::level_enum lvl, const FormatString &fmt, const Args &...args) { default_logger_raw()->log(source, lvl, fmt, args...); } template -inline void log(level::level_enum lvl, const FormatString &fmt, const Args &... args) +inline void log(level::level_enum lvl, const FormatString &fmt, const Args &...args) { default_logger_raw()->log(source_loc{}, lvl, fmt, args...); } template -inline void trace(const FormatString &fmt, const Args &... args) +inline void trace(const FormatString &fmt, const Args &...args) { default_logger_raw()->trace(fmt, args...); } template -inline void debug(const FormatString &fmt, const Args &... args) +inline void debug(const FormatString &fmt, const Args &...args) { default_logger_raw()->debug(fmt, args...); } template -inline void info(const FormatString &fmt, const Args &... args) +inline void info(const FormatString &fmt, const Args &...args) { default_logger_raw()->info(fmt, args...); } template -inline void warn(const FormatString &fmt, const Args &... args) +inline void warn(const FormatString &fmt, const Args &...args) { default_logger_raw()->warn(fmt, args...); } template -inline void error(const FormatString &fmt, const Args &... args) +inline void error(const FormatString &fmt, const Args &...args) { default_logger_raw()->error(fmt, args...); } template -inline void critical(const FormatString &fmt, const Args &... args) +inline void critical(const FormatString &fmt, const Args &...args) { default_logger_raw()->critical(fmt, args...); } -- cgit v1.2.3