From 91cd92f80e2eb60d7be4e5f560dc3abec0e3fbeb Mon Sep 17 00:00:00 2001 From: Bousk Date: Fri, 20 Apr 2018 11:28:30 +0100 Subject: [PATCH] Update android_sink.h --- include/spdlog/sinks/android_sink.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/spdlog/sinks/android_sink.h b/include/spdlog/sinks/android_sink.h index dd811633..ca08d232 100644 --- a/include/spdlog/sinks/android_sink.h +++ b/include/spdlog/sinks/android_sink.h @@ -30,7 +30,7 @@ namespace sinks { class android_sink : public sink { public: - explicit android_sink(const std::string &tag = "spdlog", bool use_raw_msg = false) + explicit android_sink(const string &tag = "spdlog", bool use_raw_msg = false) : _tag(tag) , _use_raw_msg(use_raw_msg) { @@ -81,7 +81,7 @@ private: } } - std::string _tag; + string _tag; bool _use_raw_msg; };