summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/ctables.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ctables.h b/include/ctables.h
index 65b469948..e5cdddefb 100644
--- a/include/ctables.h
+++ b/include/ctables.h
@@ -18,7 +18,7 @@
#define __CTABLES_H__
#include "inspircd_config.h"
-#include <deque>
+#include <map>
class userrec;
@@ -59,7 +59,7 @@ class command_t
virtual ~command_t() {}
};
-typedef std::deque<command_t*> command_table;
+typedef std::map<std::string,command_t*> command_table;
#endif