summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-14 17:41:38 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-14 17:41:38 +0000
commitf99478acd5f536c234c6a5ae26d5e51e734e9494 (patch)
tree1a005f63719756c3432ed29cdf1b096a4701d11c /include
parentf9bc7a311d4a9d7b6eb581c21d2105b692b42b8d (diff)
Tidied up typos
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2426 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-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