From a647af4d3bc9b70024b68dada34d093e1737dc8b Mon Sep 17 00:00:00 2001
From: Rye Mutt <rye@alchemyviewer.org>
Date: Wed, 6 Jan 2021 04:57:52 -0500
Subject: [PATCH] Faster ui color table search via hashmap

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

diff --git a/indra/llui/lluicolortable.h b/indra/llui/lluicolortable.h
index 9440b88796f..3fa167ac787 100644
--- a/indra/llui/lluicolortable.h
+++ b/indra/llui/lluicolortable.h
@@ -42,7 +42,7 @@ class LLUIColorTable final : public LLSingleton<LLUIColorTable>
 	LOG_CLASS(LLUIColorTable);
 
 	// consider using sorted vector, can be much faster
-	typedef std::map<std::string, LLUIColor, std::less<>>  string_color_map_t;
+	typedef absl::node_hash_map<std::string, LLUIColor>  string_color_map_t;
 
 public:
 	struct ColorParams : LLInitParam::ChoiceBlock<ColorParams>
-- 
GitLab