From 667c986064f7ce4c1a75bc89321b8f741a720352 Mon Sep 17 00:00:00 2001 From: Rye Mutt <rye@alchemyviewer.org> Date: Sun, 8 Oct 2023 21:09:29 -0400 Subject: [PATCH] Fix crash --- indra/llcommon/llsingleton.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/llcommon/llsingleton.h b/indra/llcommon/llsingleton.h index 95ac4fdda0d..25615266d27 100644 --- a/indra/llcommon/llsingleton.h +++ b/indra/llcommon/llsingleton.h @@ -113,7 +113,7 @@ class LLSingletonBase: private boost::noncopyable // delegate logging calls to llsingleton.cpp public: - typedef std::initializer_list<const 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&); -- GitLab