diff options
author | Ansariel <ansariel.hiller@phoenixviewer.com> | 2024-02-21 16:49:48 +0100 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-02-21 19:02:58 +0200 |
commit | 3ffe63b8a4e8a3ceda3f6d204e4b5bb0c80d0870 (patch) | |
tree | 80eebe22b53d48161fa92a62991275b2e2dae5ce /indra/newview/tests/llworldmipmap_test.cpp | |
parent | 0fb52bd372aad468c890fc57f4ae3b8be7dad463 (diff) |
Convert remaining BOOLs in llxml and introduce std::string_view
Diffstat (limited to 'indra/newview/tests/llworldmipmap_test.cpp')
-rw-r--r-- | indra/newview/tests/llworldmipmap_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/tests/llworldmipmap_test.cpp b/indra/newview/tests/llworldmipmap_test.cpp index 142d75bcfd..5f585116f7 100644 --- a/indra/newview/tests/llworldmipmap_test.cpp +++ b/indra/newview/tests/llworldmipmap_test.cpp @@ -48,7 +48,7 @@ LLViewerFetchedTexture* LLViewerTextureManager::getFetchedTextureFromUrl(const s LLControlGroup::LLControlGroup(const std::string& name) : LLInstanceTracker<LLControlGroup, std::string>(name) { } LLControlGroup::~LLControlGroup() { } -std::string LLControlGroup::getString(const std::string& ) { return std::string("test_url"); } +std::string LLControlGroup::getString(std::string_view) { return std::string("test_url"); } LLControlGroup gSavedSettings("test_settings"); // End Stubbing |