diff options
| author | 2018-07-31 03:02:16 +0100 | |
|---|---|---|
| committer | 2019-01-25 02:49:03 +0000 | |
| commit | fb17bba197a190b5865e2ddf4f70019a6dc23ba2 (patch) | |
| tree | afd8943530eceb5b14f457856edd9257bdc440ca /src/modules/m_channames.cpp | |
| parent | Use C++14 compilers in Docker on Travis. (diff) | |
Replace the TR1NS macro with the std namespace.
Diffstat (limited to 'src/modules/m_channames.cpp')
| -rw-r--r-- | src/modules/m_channames.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_channames.cpp b/src/modules/m_channames.cpp index d0d122b43..b3a882c20 100644 --- a/src/modules/m_channames.cpp +++ b/src/modules/m_channames.cpp @@ -44,7 +44,7 @@ bool NewIsChannelHandler::Call(const std::string& channame) class ModuleChannelNames : public Module { - TR1NS::function<bool(const std::string&)> rememberer; + std::function<bool(const std::string&)> rememberer; bool badchan; ChanModeReference permchannelmode; |
