aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_channames.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2018-07-31 03:02:16 +0100
committerGravatar Sadie Powell2019-01-25 02:49:03 +0000
commitfb17bba197a190b5865e2ddf4f70019a6dc23ba2 (patch)
treeafd8943530eceb5b14f457856edd9257bdc440ca /src/modules/m_channames.cpp
parentUse 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.cpp2
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;