From 0aa972b6e761273d2c97aa01ed0fd0dfb3888e6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Lugand?= Date: Wed, 3 Jan 2024 00:19:14 +0100 Subject: [PATCH] Replace map by unordered map (#403) --- src/config/ConsoleVariable.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/ConsoleVariable.h b/src/config/ConsoleVariable.h index 29c288c5d..1cc5983b4 100644 --- a/src/config/ConsoleVariable.h +++ b/src/config/ConsoleVariable.h @@ -4,7 +4,7 @@ #include #include #include -#include +#include #include namespace LUS { @@ -56,6 +56,6 @@ class ConsoleVariable { void LoadLegacy(); private: - std::map, std::less<>> mVariables; + std::unordered_map> mVariables; }; } // namespace LUS