diff options
| author | 2017-11-25 12:29:05 +0000 | |
|---|---|---|
| committer | 2017-11-25 13:38:02 +0000 | |
| commit | 3b3cb845602bbaa3935f736785a53724750230dc (patch) | |
| tree | 553ec49e5f0976eee4a40141bd3da8d65da1b47a /src/helperfuncs.cpp | |
| parent | Convert IsNick to std::function. (diff) | |
| download | inspircd++-3b3cb845602bbaa3935f736785a53724750230dc.tar.gz inspircd++-3b3cb845602bbaa3935f736785a53724750230dc.tar.bz2 inspircd++-3b3cb845602bbaa3935f736785a53724750230dc.zip | |
Convert IsIdent to std::function.
Diffstat (limited to 'src/helperfuncs.cpp')
| -rw-r--r-- | src/helperfuncs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp index 5d4778b63..719454742 100644 --- a/src/helperfuncs.cpp +++ b/src/helperfuncs.cpp @@ -243,7 +243,7 @@ bool InspIRCd::DefaultIsNick(const std::string& n) } /* return true for good ident, false else */ -bool IsIdentHandler::Call(const std::string& n) +bool InspIRCd::DefaultIsIdent(const std::string& n) { if (n.empty()) return false; |
