From cbaa580e464f60e0615fb94f410598833d771adf Mon Sep 17 00:00:00 2001 From: om Date: Fri, 21 Jul 2006 12:05:05 +0000 Subject: [PATCH] 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 --- src/modules/extra/m_sqlv2.h | 4 ++-- 1 file 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 -#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 { -- 2.39.5