From 2e8da236e911aff7c154f581db1cacdfd2aa44c0 Mon Sep 17 00:00:00 2001
From: Rye Mutt <rye@alchemyviewer.org>
Date: Mon, 27 Dec 2021 21:56:11 -0500
Subject: [PATCH] smol opt

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

diff --git a/indra/newview/lltexturecache.h b/indra/newview/lltexturecache.h
index 60930462595..24b2c0d02fc 100644
--- a/indra/newview/lltexturecache.h
+++ b/indra/newview/lltexturecache.h
@@ -204,7 +204,7 @@ class LLTextureCache final : public LLWorkerThread
 	// so it needs own pool (not thread safe by itself, relies onto header's mutex)
 	LLVolatileAPRPool*   mHeaderAPRFilePoolp;
 	
-	typedef std::map<handle_t, LLTextureCacheWorker*> handle_map_t;
+	typedef absl::flat_hash_map<handle_t, LLTextureCacheWorker*> handle_map_t;
 	handle_map_t mReaders;
 	handle_map_t mWriters;
 
-- 
GitLab