From 378dd400ac7df3e45887fd8542de2e1f53675069 Mon Sep 17 00:00:00 2001 From: fintarin Date: Mon, 25 Sep 2023 18:57:30 +0300 Subject: [PATCH] Use unordered_multimap in Parser --- include/fintamath/parser/Parser.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fintamath/parser/Parser.hpp b/include/fintamath/parser/Parser.hpp index 6997e82d3..fd7b09f2f 100644 --- a/include/fintamath/parser/Parser.hpp +++ b/include/fintamath/parser/Parser.hpp @@ -21,7 +21,7 @@ class Parser { using Comparator = std::function; template - using Map = std::multimap>; + using Map = std::unordered_multimap>; template using Vector = std::vector>;