From 3f113fc04628491cb795d2fc809d89ff2379c61a Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Tue, 2 Mar 2021 02:44:41 +0000 Subject: Move iterator_range to the utility directory and renamespace. --- src/modules/m_alias.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/modules/m_alias.cpp') diff --git a/src/modules/m_alias.cpp b/src/modules/m_alias.cpp index 12a6ba833..aa040bf9c 100644 --- a/src/modules/m_alias.cpp +++ b/src/modules/m_alias.cpp @@ -166,7 +166,7 @@ class ModuleAlias : public Module return MOD_RES_PASSTHRU; /* We dont have any commands looking like this? Stop processing. */ - auto aliases = stdalgo::equal_range(Aliases, command); + auto aliases = insp::equal_range(Aliases, command); if (aliases.empty()) return MOD_RES_PASSTHRU; @@ -240,7 +240,7 @@ class ModuleAlias : public Module // nor do we give a shit about the prefix scommand.erase(0, fprefix.size()); - auto aliases = stdalgo::equal_range(Aliases, scommand); + auto aliases = insp::equal_range(Aliases, scommand); if (aliases.empty()) return; -- cgit v1.3.1-10-gc9f91