diff options
| author | 2020-02-06 11:25:42 +0000 | |
|---|---|---|
| committer | 2020-02-06 11:25:42 +0000 | |
| commit | 98e4ddfb21d285c8b675788c155bb204822fbd4a (patch) | |
| tree | 030eb18c989bf3c9e4768a538796e3221ca7934e /src/snomasks.cpp | |
| parent | In C++11 [io]fstream has std::string constructors; use them. (diff) | |
Use C++11 inline initialisation for class members.
Diffstat (limited to 'src/snomasks.cpp')
| -rw-r--r-- | src/snomasks.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/snomasks.cpp b/src/snomasks.cpp index 17696d072..aa4dc3015 100644 --- a/src/snomasks.cpp +++ b/src/snomasks.cpp @@ -86,11 +86,6 @@ bool SnomaskManager::IsSnomaskUsable(char ch) const return ((isalpha(ch)) && (!masks[tolower(ch) - 'a'].Description.empty())); } -Snomask::Snomask() - : Count(0) -{ -} - void Snomask::SendMessage(const std::string& message, char letter) { if ((!ServerInstance->Config->NoSnoticeStack) && (message == LastMessage) && (letter == LastLetter)) |
