diff options
| author | 2012-07-24 14:54:29 +0200 | |
|---|---|---|
| committer | 2012-10-12 03:57:39 +0200 | |
| commit | c8b41aa5d256d99eee67ec94492a94dc30e0ea35 (patch) | |
| tree | 251cb805f1fe25423ca245b4a9b6d5db67451fe8 /src/configreader.cpp | |
| parent | Fix unregistered users getting global notices, also fix certain commands work... (diff) | |
Remove superfluous std::string()s
Diffstat (limited to 'src/configreader.cpp')
| -rw-r--r-- | src/configreader.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp index 382bcaffb..c62f2446c 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -579,7 +579,7 @@ void ServerConfig::Fill() std::string modes = ConfValue("disabled")->getString("usermodes"); for (std::string::const_iterator p = modes.begin(); p != modes.end(); ++p) { - if (*p < 'A' || *p > ('A' + 64)) throw CoreException(std::string("Invalid usermode ")+(char)*p+" was found."); + if (*p < 'A' || *p > ('A' + 64)) throw CoreException("Invalid usermode " + std::string(1, *p) + " was found."); DisabledUModes[*p - 'A'] = 1; } @@ -587,7 +587,7 @@ void ServerConfig::Fill() modes = ConfValue("disabled")->getString("chanmodes"); for (std::string::const_iterator p = modes.begin(); p != modes.end(); ++p) { - if (*p < 'A' || *p > ('A' + 64)) throw CoreException(std::string("Invalid chanmode ")+(char)*p+" was found."); + if (*p < 'A' || *p > ('A' + 64)) throw CoreException("Invalid chanmode " + std::string(1, *p) + " was found."); DisabledCModes[*p - 'A'] = 1; } |
