summaryrefslogtreecommitdiff
path: root/src/mode.cpp
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2013-09-04 06:42:46 -0700
committerAttila Molnar <attilamolnar@hush.com>2013-09-04 06:42:46 -0700
commitfb1e17c31cfb4af8f7512a0e6c7d7da81ae1be55 (patch)
tree125d21e05be9db15499ab6f7ad95586adaae74f5 /src/mode.cpp
parentae23aefa3cde3caffc70a0c8058ebdc42326c59a (diff)
parent426752022ee4b5158b4cfc6c4531fff285029071 (diff)
Merge pull request #623 from ChrisTX/insp20+compilerfixes
Improve support for rarely used compilers, EKOPath in this case.
Diffstat (limited to 'src/mode.cpp')
-rw-r--r--src/mode.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mode.cpp b/src/mode.cpp
index e2b0c2f68..16751e712 100644
--- a/src/mode.cpp
+++ b/src/mode.cpp
@@ -880,7 +880,7 @@ bool ModeParser::DelModeWatcher(ModeWatcher* mw)
mw->GetModeType() == MODETYPE_USER ? mask = MASK_USER : mask = MASK_CHANNEL;
pos = (mw->GetModeChar()-65) | mask;
- ModeWatchIter a = find(modewatchers[pos].begin(),modewatchers[pos].end(),mw);
+ ModeWatchIter a = std::find(modewatchers[pos].begin(),modewatchers[pos].end(),mw);
if (a == modewatchers[pos].end())
{