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:
@@ -1,6 +1,12 @@
|
||||
#ifndef ACCESS_H
|
||||
#define ACCESS_H
|
||||
|
||||
enum
|
||||
{
|
||||
ACCESS_INVALID = -10000,
|
||||
ACCESS_FOUNDER = 10001
|
||||
};
|
||||
|
||||
struct CoreExport Privilege
|
||||
{
|
||||
Anope::string name;
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user