diff options
Diffstat (limited to 'src/connection.cpp')
-rw-r--r-- | src/connection.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/connection.cpp b/src/connection.cpp index 384f626e2..b627c2494 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -14,6 +14,8 @@ * --------------------------------------------------- */ +using namespace std; + #include <connection.h> #include <unistd.h> #include <fcntl.h> @@ -30,13 +32,11 @@ #include "inspstring.h" #include "helperfuncs.h" -using namespace std; - -extern std::vector<Module*> modules; -extern std::vector<ircd_module*> factory; +extern std::vector<Module*, __single_client_alloc> modules; +extern std::vector<ircd_module*, __single_client_alloc> factory; -std::deque<std::string> xsums; +std::deque<std::string, __single_client_alloc> xsums; extern int MODCOUNT; |