summaryrefslogtreecommitdiff
path: root/src/modules/extra/m_sqlv2.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/extra/m_sqlv2.h')
-rw-r--r--src/modules/extra/m_sqlv2.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/extra/m_sqlv2.h b/src/modules/extra/m_sqlv2.h
index aa90c7b95..75d7eb093 100644
--- a/src/modules/extra/m_sqlv2.h
+++ b/src/modules/extra/m_sqlv2.h
@@ -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
{