aboutsummaryrefslogtreecommitdiff
path: root/src/server/shared/Database/QueryResult.h
diff options
context:
space:
mode:
authorclick <none@none>2010-09-12 18:52:06 +0200
committerclick <none@none>2010-09-12 18:52:06 +0200
commit976cc3f8c4cb23865f92a86651bf063b98304e86 (patch)
tree38191c722556705ad03e62a9007e24e2a0a2a39d /src/server/shared/Database/QueryResult.h
parent00630d94d4fe4af6b931c12b1ea83c998ff9165c (diff)
Core/DBLayer: Make GCC happy (initialize variables in the correct order in ResultBind()
--HG-- branch : trunk
Diffstat (limited to 'src/server/shared/Database/QueryResult.h')
-rwxr-xr-xsrc/server/shared/Database/QueryResult.h2
1 files changed, 1 insertions, 1 deletions
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()
{