From 41f708e4388b518c00565f506a1f0e0ad857d575 Mon Sep 17 00:00:00 2001 From: baishuai Date: Fri, 13 Jul 2018 23:41:26 +0800 Subject: [PATCH] fix bug in android_sink.h --- include/spdlog/sinks/android_sink.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/sinks/android_sink.h b/include/spdlog/sinks/android_sink.h index 97515db9..ce3e9cd8 100644 --- a/include/spdlog/sinks/android_sink.h +++ b/include/spdlog/sinks/android_sink.h @@ -102,7 +102,7 @@ private: template inline std::shared_ptr android_logger(const std::string &logger_name, const std::string &tag = "spdlog") { - return return Factory::template create(logger_name, tag); + return Factory::template create(logger_name, tag); } } // namespace spdlog