diff options
| author | 2020-02-06 11:25:42 +0000 | |
|---|---|---|
| committer | 2020-02-06 11:25:42 +0000 | |
| commit | 98e4ddfb21d285c8b675788c155bb204822fbd4a (patch) | |
| tree | 030eb18c989bf3c9e4768a538796e3221ca7934e /src/modules/m_channames.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/modules/m_channames.cpp')
| -rw-r--r-- | src/modules/m_channames.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/m_channames.cpp b/src/modules/m_channames.cpp index a3add12a2..a5de222c0 100644 --- a/src/modules/m_channames.cpp +++ b/src/modules/m_channames.cpp @@ -50,13 +50,12 @@ bool NewIsChannelHandler::Call(const std::string& channame) class ModuleChannelNames : public Module { std::function<bool(const std::string&)> rememberer; - bool badchan; + bool badchan = false; ChanModeReference permchannelmode; public: ModuleChannelNames() : rememberer(ServerInstance->IsChannel) - , badchan(false) , permchannelmode(this, "permanent") { } |
