1
0
mirror of https://github.com/anope/anope.git synced 2026-07-07 23:23:13 +02:00

Fixed compile error

This commit is contained in:
Adam
2011-11-16 16:22:58 -05:00
parent 503eb42e40
commit 5281282a61
3 changed files with 6 additions and 12 deletions
+6
View File
@@ -1,6 +1,12 @@
#ifndef ACCESS_H
#define ACCESS_H
enum
{
ACCESS_INVALID = -10000,
ACCESS_FOUNDER = 10001
};
struct CoreExport Privilege
{
Anope::string name;
-6
View File
@@ -13,12 +13,6 @@
#include "module.h"
enum
{
ACCESS_INVALID = -10000,
ACCESS_FOUNDER = 10001
};
static std::map<Anope::string, int16_t, ci::less> defaultLevels;
static void reset_levels(ChannelInfo *ci)
-6
View File
@@ -12,12 +12,6 @@
#include "services.h"
#include "modules.h"
enum
{
ACCESS_INVALID = -10000,
ACCESS_FOUNDER = 10001
};
Privilege::Privilege(const Anope::string &n, const Anope::string &d) : name(n), desc(d)
{
}