From b0fd09f30a314d04fb42b0dc6eba3fe9ccf0d8e1 Mon Sep 17 00:00:00 2001 From: Rye Mutt <rye@alchemyviewer.org> Date: Mon, 13 Nov 2023 22:49:02 -0500 Subject: [PATCH] Small tweak to reduce crashes --- indra/llrender/llrender.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/llrender/llrender.cpp b/indra/llrender/llrender.cpp index df7ac879f77..322507c6530 100644 --- a/indra/llrender/llrender.cpp +++ b/indra/llrender/llrender.cpp @@ -83,7 +83,7 @@ struct LLVBCache std::chrono::steady_clock::time_point touched; }; -static boost::unordered_flat_map<U64, LLVBCache> sVBCache; +static boost::unordered_map<U64, LLVBCache> sVBCache; static const GLenum sGLTextureType[] = { -- GitLab