diff options
author | azazel <none@none> | 2010-10-16 13:32:30 +0600 |
---|---|---|
committer | azazel <none@none> | 2010-10-16 13:32:30 +0600 |
commit | 3bd1ee0665f8c48bc256fcbe30f447c1fa40bec8 (patch) | |
tree | 0d16a8f7fafdf330d9d1f2ce7055ee7bf186a1b5 /src/server/shared/Database/QueryResult.h | |
parent | 88235496944f364bc8f13ef61dbad4639c43f471 (diff) |
Fix most of the recently introduced warnings
--HG--
branch : trunk
Diffstat (limited to 'src/server/shared/Database/QueryResult.h')
-rwxr-xr-x | src/server/shared/Database/QueryResult.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/shared/Database/QueryResult.h b/src/server/shared/Database/QueryResult.h index cec7d8a0913..fbe95b8c67c 100755 --- a/src/server/shared/Database/QueryResult.h +++ b/src/server/shared/Database/QueryResult.h @@ -73,14 +73,14 @@ class PreparedResultSet Field* Fetch() const { ASSERT(m_rowPosition < m_rowCount); - return m_rows[m_rowPosition]; + return m_rows[uint32(m_rowPosition)]; } const Field & operator [] (uint32 index) const { ASSERT(m_rowPosition < m_rowCount); ASSERT(index < m_fieldCount); - return m_rows[m_rowPosition][index]; + return m_rows[uint32(m_rowPosition)][index]; } protected: |