diff --git a/include/spdlog/spdlog.h b/include/spdlog/spdlog.h index fc4ae1f5..af1f748c 100644 --- a/include/spdlog/spdlog.h +++ b/include/spdlog/spdlog.h @@ -83,7 +83,6 @@ SPDLOG_API void set_global_logger(std::shared_ptr global_logger); // e.g do not call set_global_logger() from one thread while calling spdlog::info() from another. SPDLOG_API logger *global_logger_raw() noexcept; - template void log(source_loc source, level lvl, format_string_t fmt, Args &&...args) { global_logger_raw()->log(source, lvl, fmt, std::forward(args)...);