diff options
Diffstat (limited to 'src/connection.cpp')
-rw-r--r-- | src/connection.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/connection.cpp b/src/connection.cpp index b627c2494..e08fcb4e1 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -33,10 +33,10 @@ using namespace std; #include "helperfuncs.h" -extern std::vector<Module*, __single_client_alloc> modules; -extern std::vector<ircd_module*, __single_client_alloc> factory; +extern std::vector<Module*> modules; +extern std::vector<ircd_module*> factory; -std::deque<std::string, __single_client_alloc> xsums; +std::deque<std::string> xsums; extern int MODCOUNT; |