diff options
| author | 2020-11-10 23:14:21 +0000 | |
|---|---|---|
| committer | 2020-11-10 23:14:21 +0000 | |
| commit | ba3dd9cedcca2f3cc6781f09410e3cf2cf696e43 (patch) | |
| tree | 86fee6a331b262932973ac453169a1b566d60a2a /src/modules/m_httpd_stats.cpp | |
| parent | Convert FIRST_MOD_RESULT_CUSTOM to a variadic function. (diff) | |
Convert FOREACH_MOD_CUSTOM to a variadic function.
Diffstat (limited to 'src/modules/m_httpd_stats.cpp')
| -rw-r--r-- | src/modules/m_httpd_stats.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_httpd_stats.cpp b/src/modules/m_httpd_stats.cpp index 2d38d96e1..618d5d58d 100644 --- a/src/modules/m_httpd_stats.cpp +++ b/src/modules/m_httpd_stats.cpp @@ -118,7 +118,7 @@ namespace Stats data << "<isupport>"; ISupport::TokenMap tokens; - FOREACH_MOD_CUSTOM(*isevprov, ISupport::EventListener, OnBuildISupport, (tokens)); + isevprov->Call(&ISupport::EventListener::OnBuildISupport, tokens); for (ISupport::TokenMap::const_iterator it = tokens.begin(); it != tokens.end(); ++it) { data << "<token><name>" << Sanitize(it->first) |
