]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
ParamL needs to be a deque rather than a vector *thwap*
authorom <om@e03df62e-2008-0410-955e-edbf42e46eb7>
Fri, 21 Jul 2006 12:05:05 +0000 (12:05 +0000)
committerom <om@e03df62e-2008-0410-955e-edbf42e46eb7>
Fri, 21 Jul 2006 12:05:05 +0000 (12:05 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4473 e03df62e-2008-0410-955e-edbf42e46eb7

src/modules/extra/m_sqlv2.h

index aa90c7b952e38761c0ec8c185057c5446ca3ba76..75d7eb093e594f586a2103ab16684e26fda0f45c 100644 (file)
@@ -2,7 +2,7 @@
 #define INSPIRCD_SQLAPI_2
 
 #include <string>
-#include <vector>
+#include <deque>
 #include <map>
 #include "modules.h"
 
@@ -16,7 +16,7 @@
 #define SQLSUCCESS "You shouldn't be reading this (success)"
 
 enum SQLerrorNum { NO_ERROR, BAD_DBID, BAD_CONN, QSEND_FAIL };
-typedef std::vector<std::string> ParamL;
+typedef std::deque<std::string> ParamL;
 
 class SQLexception : public ModuleException
 {