diff options
author | attilamolnar <attilamolnar@hush.com> | 2012-11-17 02:36:29 +0100 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2012-11-19 18:32:41 +0100 |
commit | ba5c0db795824c3fc1ad48ce332d7bdc440cb77f (patch) | |
tree | 0ef76daaf8ad4cc68a2cca9c1c2446ae045278e2 /src/modules/m_alltime.cpp | |
parent | 2de13e15c26edf4f4a5c0280974b2dea052c1853 (diff) |
Change empty string assignments to .clear() or remove them entirely
Diffstat (limited to 'src/modules/m_alltime.cpp')
-rw-r--r-- | src/modules/m_alltime.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_alltime.cpp b/src/modules/m_alltime.cpp index 7012fde7e..29a0ee42c 100644 --- a/src/modules/m_alltime.cpp +++ b/src/modules/m_alltime.cpp @@ -28,7 +28,7 @@ class CommandAlltime : public Command public: CommandAlltime(Module* Creator) : Command(Creator, "ALLTIME", 0) { - flags_needed = 'o'; syntax.clear(); + flags_needed = 'o'; translation.push_back(TR_END); } |