diff options
| author | 2021-03-02 02:44:41 +0000 | |
|---|---|---|
| committer | 2021-03-02 02:56:49 +0000 | |
| commit | 3f113fc04628491cb795d2fc809d89ff2379c61a (patch) | |
| tree | 96f157ee67231916a41bdc4f73b92b96f229a05e /src/modules/m_vhost.cpp | |
| parent | Replace manual copy prevention with the insp::uncopiable class. (diff) | |
Move iterator_range to the utility directory and renamespace.
Diffstat (limited to 'src/modules/m_vhost.cpp')
| -rw-r--r-- | src/modules/m_vhost.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_vhost.cpp b/src/modules/m_vhost.cpp index 615272ef0..79915e0ed 100644 --- a/src/modules/m_vhost.cpp +++ b/src/modules/m_vhost.cpp @@ -64,7 +64,7 @@ class CommandVhost : public Command CmdResult Handle(User* user, const Params& parameters) override { - for (const auto& [_, config] : stdalgo::equal_range(vhosts, parameters[0])) + for (const auto& [_, config] : insp::equal_range(vhosts, parameters[0])) { if (config.CheckPass(user, parameters[1])) { |
