From d3e6c84df482b13d74e39641e1c25ed0ddcbc156 Mon Sep 17 00:00:00 2001
From: Rye Mutt <rye@alchemyviewer.org>
Date: Sat, 3 Feb 2024 12:28:15 -0500
Subject: [PATCH] Cleanup

---
 indra/newview/llvocache.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/indra/newview/llvocache.cpp b/indra/newview/llvocache.cpp
index 4be5921a9a4..8cf9a1e8392 100644
--- a/indra/newview/llvocache.cpp
+++ b/indra/newview/llvocache.cpp
@@ -1589,7 +1589,7 @@ void LLVOCache::readGenericExtrasFromCache(U64 handle, const LLUUID& id, LLVOCac
     try {
         num_entries = std::stol(line);
     }
-    catch(std::logic_error&)  // either invalid_argument or out_of_range
+    catch(const std::logic_error&)  // either invalid_argument or out_of_range
     {
         LL_WARNS() << "Failed reading extras cache for handle " << handle << ". unreadable num_entries" << LL_ENDL;
         return;
-- 
GitLab