diff options
author | Adam <Adam@anope.org> | 2013-03-01 00:57:24 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-03-01 00:57:24 -0500 |
commit | 91ad9d22cad8c1da3134975852ba1f732b55dabe (patch) | |
tree | f93eb451755e2e531c75d2c16ced8c96f17e243c /include/modes.h | |
parent | 6aa9ad938a4923bd730516aa97a6e19643fd5c57 (diff) |
Fix Windows build
Diffstat (limited to 'include/modes.h')
-rw-r--r-- | include/modes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/modes.h b/include/modes.h index 5d884692e..4b207fa44 100644 --- a/include/modes.h +++ b/include/modes.h @@ -298,7 +298,8 @@ class CoreExport ModeManager static std::vector<UserMode *> UserModes; /* Number of generic channel and user modes we are tracking */ - static unsigned GenericChannelModes, GenericUserModes; + static unsigned GenericChannelModes; + static unsigned GenericUserModes; /* Default channel mode lock */ static std::list<std::pair<Anope::string, Anope::string> > ModeLockOn; static std::list<Anope::string> ModeLockOff; |