From cb890c96b90d65fdb5ab6da72aa81ce88e623ba6 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Wed, 28 Aug 2019 22:59:16 +0300 Subject: [PATCH] Update logger.h --- include/spdlog/logger.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/logger.h b/include/spdlog/logger.h index 767abdbd..d47ec91d 100644 --- a/include/spdlog/logger.h +++ b/include/spdlog/logger.h @@ -61,7 +61,7 @@ public: // Logger with single sink logger(std::string name, sink_ptr single_sink) - : logger(std::move(name), {std::move(single_sink)}) + : logger(std::move(name), std::move(single_sink)) {} // Logger with sinks init list