From cbc8ba72035a3828f3a03e425e7f0d91da6c2ba3 Mon Sep 17 00:00:00 2001 From: gabime Date: Thu, 5 Nov 2015 16:06:11 +0200 Subject: [PATCH] Fixed issue #137 --- include/spdlog/spdlog.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/spdlog.h b/include/spdlog/spdlog.h index aef04069..64cc6f87 100644 --- a/include/spdlog/spdlog.h +++ b/include/spdlog/spdlog.h @@ -112,7 +112,7 @@ std::shared_ptr create(const std::string& logger_name, const It& sinks_b // Create and register a logger with templated sink type // Example: spdlog::create("mylog", "dailylog_filename", "txt"); template -std::shared_ptr create(const std::string& logger_name, const Args&...); +std::shared_ptr create(const std::string& logger_name, Args&...); // Register the given logger with the given name