From 769f11109d65bc076f4e72b5d31d7ce0c348f7f4 Mon Sep 17 00:00:00 2001 From: rajesh-p Date: Thu, 9 Aug 2018 21:17:53 -0700 Subject: [PATCH] Namespace fix for the issue 785 Added namespace fix --- 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 be70db00..d6238600 100644 --- a/include/spdlog/sinks/android_sink.h +++ b/include/spdlog/sinks/android_sink.h @@ -43,11 +43,11 @@ protected: fmt::memory_buffer formatted; if (use_raw_msg_) { - fmt_helper::append_buf(msg.raw, formatted); + details::fmt_helper::append_buf(msg.raw, formatted); } else { - formatter_->format(msg, formatted); + sink::formatter_->format(msg, formatted); } formatted.push_back('\0'); const char *msg_output = formatted.data();