From 976cc3f8c4cb23865f92a86651bf063b98304e86 Mon Sep 17 00:00:00 2001 From: click Date: Sun, 12 Sep 2010 18:52:06 +0200 Subject: Core/DBLayer: Make GCC happy (initialize variables in the correct order in ResultBind() --HG-- branch : trunk --- src/server/shared/Database/QueryResult.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/server/shared/Database/QueryResult.h') diff --git a/src/server/shared/Database/QueryResult.h b/src/server/shared/Database/QueryResult.h index 805d31f3629..3aef0d13a5a 100755 --- a/src/server/shared/Database/QueryResult.h +++ b/src/server/shared/Database/QueryResult.h @@ -101,7 +101,7 @@ class ResultBind friend class PreparedResultSet; public: - ResultBind(MYSQL_STMT* stmt) : m_rBind(NULL), m_stmt(stmt), m_isNull(NULL), m_length(NULL), m_res(NULL), m_fieldCount(0) {} + ResultBind(MYSQL_STMT* stmt) : m_rBind(NULL), m_stmt(stmt), m_res(NULL), m_isNull(NULL), m_length(NULL), m_fieldCount(0) {} ~ResultBind() { -- cgit v1.2.3