From f0e5e417effecd592e19fac75b98d86488e908d0 Mon Sep 17 00:00:00 2001 From: Rye Mutt <rye@alchemyviewer.org> Date: Sun, 4 Oct 2020 13:36:47 -0400 Subject: [PATCH] Small codetweak --- indra/newview/llviewerregion.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/indra/newview/llviewerregion.cpp b/indra/newview/llviewerregion.cpp index 95675ceccb0..ea1917d8afe 100644 --- a/indra/newview/llviewerregion.cpp +++ b/indra/newview/llviewerregion.cpp @@ -902,9 +902,10 @@ std::string LLViewerRegion::regionFlagsToString(U64 flags) // static const std::string& LLViewerRegion::accessToString(U8 sim_access) { - static std::vector<std::string> access_strings(5); + static std::vector<std::string> access_strings; if (access_strings.empty()) { + access_strings.reserve(5); access_strings.push_back(LLTrans::getString("SIM_ACCESS_PG")); access_strings.push_back(LLTrans::getString("SIM_ACCESS_MATURE")); access_strings.push_back(LLTrans::getString("SIM_ACCESS_ADULT")); -- GitLab