aboutsummaryrefslogtreecommitdiff
path: root/src/mode.cpp
diff options
context:
space:
mode:
authorGravatar Peter Powell2019-01-24 22:06:27 +0000
committerGravatar Peter Powell2019-01-24 22:18:22 +0000
commit961109ae4fde97144fdedeef25607a5b8b3ec2c2 (patch)
treea04b3000fc1000b753fb60588a6f35305e60afdf /src/mode.cpp
parentFix overriding <options:exemptchanops> with the exemptchanops mode. (diff)
Remove trailing whitespace from various source files.
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 459eb21c8..50dd05d2d 100644
--- a/src/mode.cpp
+++ b/src/mode.cpp
@@ -607,7 +607,7 @@ void ModeParser::AddMode(ModeHandler* mh)
if ((mh->GetModeType() == MODETYPE_USER) || (mh->IsParameterMode()) || (!mh->IsListMode()))
modeid = AllocateModeId(mh->GetModeType());
- std::pair<ModeHandlerMap::iterator, bool> res = modehandlersbyname[mh->GetModeType()].insert(std::make_pair(mh->name, mh));
+ std::pair<ModeHandlerMap::iterator, bool> res = modehandlersbyname[mh->GetModeType()].insert(std::make_pair(mh->name, mh));
if (!res.second)
{
ModeHandler* othermh = res.first->second;