From 6db01869479c878753fc6da49f2fb0bc44511359 Mon Sep 17 00:00:00 2001 From: Adam Date: Sat, 20 Jul 2013 02:55:25 -0400 Subject: Fix not setting the correct compile flags on modules and fix the resulting warnings --- modules/commands/cs_entrymsg.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'modules/commands/cs_entrymsg.cpp') diff --git a/modules/commands/cs_entrymsg.cpp b/modules/commands/cs_entrymsg.cpp index ca521a82c..aaa4f8d85 100644 --- a/modules/commands/cs_entrymsg.cpp +++ b/modules/commands/cs_entrymsg.cpp @@ -257,8 +257,9 @@ class CSEntryMessage : public Module public: CSEntryMessage(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, VENDOR), - commandentrymsg(this), eml(this, "entrymsg"), - entrymsg_type("EntryMsg", EntryMsg::Unserialize) + commandentrymsg(this), + entrymsg_type("EntryMsg", EntryMsg::Unserialize), + eml(this, "entrymsg") { } -- cgit