summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/inspircd.h3
-rw-r--r--include/typedefs.h1
2 files changed, 2 insertions, 2 deletions
diff --git a/include/inspircd.h b/include/inspircd.h
index 236f99db0..a7c863d53 100644
--- a/include/inspircd.h
+++ b/include/inspircd.h
@@ -42,6 +42,7 @@
#include "inspircd_util.h"
#include "users.h"
#include "channels.h"
+#include "typedefs.h"
// some misc defines
@@ -66,8 +67,6 @@
#define IS_REMOTE(x) (x->fd < 0)
#define IS_MODULE_CREATED(x) (x->fd == FD_MAGIC_NUMBER)
-typedef std::deque<std::string> file_cache;
-
class serverstats
{
public:
diff --git a/include/typedefs.h b/include/typedefs.h
index 558a93757..3b11df2da 100644
--- a/include/typedefs.h
+++ b/include/typedefs.h
@@ -26,5 +26,6 @@ typedef std::vector<std::string> servernamelist;
typedef std::vector<ExtMode> ExtModeList;
typedef ExtModeList::iterator ExtModeListIter;
typedef void (handlerfunc) (char**, int, userrec*);
+typedef std::deque<std::string> file_cache;
#endif