From 5b04fb6850a6cbe60ed41ce7a6ae5979b460454c Mon Sep 17 00:00:00 2001 From: gabime Date: Fri, 7 Nov 2014 20:46:47 +0200 Subject: [PATCH] Remove warning in debian about unused variadic template args --- 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 7cc08bfb..beb64164 100644 --- a/include/spdlog/spdlog.h +++ b/include/spdlog/spdlog.h @@ -81,7 +81,7 @@ std::shared_ptr create(const std::string& logger_name, const It& sinks_b // Create 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&... args); +std::shared_ptr create(const std::string& logger_name, const Args&...);