From: om Date: Fri, 21 Jul 2006 12:05:05 +0000 (+0000) Subject: ParamL needs to be a deque rather than a vector *thwap* X-Git-Tag: v2.0.23~7798 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=cbaa580e464f60e0615fb94f410598833d771adf;p=user%2Fhenk%2Fcode%2Finspircd.git ParamL needs to be a deque rather than a vector *thwap* git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4473 e03df62e-2008-0410-955e-edbf42e46eb7 --- 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 -#include +#include #include #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 ParamL; +typedef std::deque ParamL; class SQLexception : public ModuleException {