summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorDave Parks <davep@lindenlab.com>2023-03-13 15:56:52 -0500
committerDave Parks <davep@lindenlab.com>2023-03-13 15:56:52 -0500
commit0cfbf6828df0e810efdcefe372259b156c648a5a (patch)
tree10bda68545f2d35bdd95f9ccc646c61c940b28b6 /indra
parent804c207dcc07b9ae39922a3475de7e9a513f3e16 (diff)
DRTVWR-559 Fix for windows build.
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llvocache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvocache.cpp b/indra/newview/llvocache.cpp
index 21a6a2950e..0fbcf9c624 100644
--- a/indra/newview/llvocache.cpp
+++ b/indra/newview/llvocache.cpp
@@ -1570,7 +1570,7 @@ void LLVOCache::readGenericExtrasFromCache(U64 handle, const LLUUID& id, LLVOCac
try {
num_entries = std::stol(line);
}
- catch(std::logic_error &excp) // either invalid_argument or out_of_range
+ catch(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;