diff options
| author | 2012-11-28 02:37:49 +0100 | |
|---|---|---|
| committer | 2012-11-28 19:28:52 +0100 | |
| commit | 2d2e0469b8ac7c64c9dc22f7074db8fc245e2f13 (patch) | |
| tree | 6645e1002a23da05d3f651b1a341b75445c65992 /src/xline.cpp | |
| parent | Have FindUUID(const char*) call FindUUID(const std::string&), not the other w... (diff) | |
| download | inspircd++-2d2e0469b8ac7c64c9dc22f7074db8fc245e2f13.tar.gz inspircd++-2d2e0469b8ac7c64c9dc22f7074db8fc245e2f13.tar.bz2 inspircd++-2d2e0469b8ac7c64c9dc22f7074db8fc245e2f13.zip | |
Change empty string assignments to .clear() or remove them entirely
Part 2 of ba5c0db795824c3fc1ad48ce332d7bdc440cb77f
Diffstat (limited to 'src/xline.cpp')
| -rw-r--r-- | src/xline.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xline.cpp b/src/xline.cpp index 6ec0723ec..12948959b 100644 --- a/src/xline.cpp +++ b/src/xline.cpp @@ -241,7 +241,7 @@ IdentHostPair XLineManager::IdentSplit(const std::string &ident_and_host) } else { - n.first = ""; + n.first.clear(); n.second = ident_and_host; } |
