diff options
| author | 2022-09-29 12:01:29 +0100 | |
|---|---|---|
| committer | 2022-09-29 12:36:01 +0100 | |
| commit | 89537ed2ab22fcedb25e0378bd2c18e392911c0c (patch) | |
| tree | 4cdea30cb16c0a044d80ba4bab8ef9a645c90824 /src/configreader.cpp | |
| parent | Use NOMINMAX on Windows and undefine error in the log header. (diff) | |
Fix various cases of the &* being next to the name instead of type.
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 1c8a181ca..718488115 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -367,7 +367,7 @@ void ServerConfig::Read() } } -void ServerConfig::Apply(ServerConfig* old, const std::string &useruid) +void ServerConfig::Apply(ServerConfig* old, const std::string& useruid) { valid = true; if (old) @@ -411,7 +411,7 @@ void ServerConfig::Apply(ServerConfig* old, const std::string &useruid) CrossCheckOperClassType(); CrossCheckConnectBlocks(old); } - catch (CoreException &ce) + catch (CoreException& ce) { errstr << ce.GetReason() << std::endl; } |
