summaryrefslogtreecommitdiff
path: root/src/modules/m_setident.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2020-03-09 22:50:48 +0000
committerSadie Powell <sadie@witchery.services>2020-03-09 22:50:48 +0000
commitfeaceb2b037123c8687b3afdd80b2ffba61a5652 (patch)
treebd0ec68a92584d84f7113d8edb97bcc8b909ebfd /src/modules/m_setident.cpp
parent0643ce085c6a946fa52f2aa603f9f68d7a33a778 (diff)
Fix unnecessary inlining in command handler constructors.
Diffstat (limited to 'src/modules/m_setident.cpp')
-rw-r--r--src/modules/m_setident.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/m_setident.cpp b/src/modules/m_setident.cpp
index 85e148a85..079564b23 100644
--- a/src/modules/m_setident.cpp
+++ b/src/modules/m_setident.cpp
@@ -34,7 +34,8 @@ class CommandSetident : public Command
CommandSetident(Module* Creator) : Command(Creator,"SETIDENT", 1)
{
allow_empty_last_param = false;
- flags_needed = 'o'; syntax = "<ident>";
+ flags_needed = 'o';
+ syntax = "<ident>";
}
CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE