diff --git a/indra/llcommon/llsingleton.h b/indra/llcommon/llsingleton.h index 163c08099f8feb98547ed3bf69a4b26e3a54570b..7c81d65a8bb3edc613730c0130353b46f223849c 100644 --- a/indra/llcommon/llsingleton.h +++ b/indra/llcommon/llsingleton.h @@ -29,7 +29,6 @@ #include <boost/unordered_set.hpp> #include <initializer_list> #include <list> -#include <string_view> #include <typeinfo> #include <vector> #include "mutex.h" @@ -114,7 +113,7 @@ class LLSingletonBase: private boost::noncopyable // delegate logging calls to llsingleton.cpp public: - typedef std::initializer_list<std::string_view> string_params; + typedef std::initializer_list<const std::string> string_params; protected: static void logerrs (const string_params&); static void logwarns (const string_params&);