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_chanlog.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_chanlog.cpp')
| -rw-r--r-- | src/modules/m_chanlog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_chanlog.cpp b/src/modules/m_chanlog.cpp index 1d6c96282..692b25352 100644 --- a/src/modules/m_chanlog.cpp +++ b/src/modules/m_chanlog.cpp @@ -64,7 +64,7 @@ class ModuleChanLog : public Module ModResult OnSendSnotice(char &sno, std::string &desc, const std::string &msg) override { - auto channels = stdalgo::equal_range(logstreams, sno); + auto channels = insp::equal_range(logstreams, sno); if (channels.empty()) return MOD_RES_PASSTHRU; |
