Skip to content

Commit

Permalink
Use unordered_multimap in Parser
Browse files Browse the repository at this point in the history
  • Loading branch information
fintarin committed Sep 25, 2023
1 parent 5421b05 commit 0d1d710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/fintamath/parser/Parser.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Parser {
using Comparator = std::function<bool(Args...)>;

template <typename Return, typename... Args>
using Map = std::multimap<std::string, Function<Return, Args...>>;
using Map = std::unordered_multimap<std::string, Function<Return, Args...>>;

template <typename Return, typename... Args>
using Vector = std::vector<Function<Return, Args...>>;
Expand Down

0 comments on commit 0d1d710

Please sign in to comment.