diff options
author | Spp <spp@jorge.gr> | 2011-09-15 14:08:17 +0200 |
---|---|---|
committer | Spp <spp@jorge.gr> | 2011-09-15 14:12:57 +0200 |
commit | af05915b9e36497eda8f2f061c29ffee0c8042b6 (patch) | |
tree | fa9e603e2a8d90b9842148ee9fa767f475566b67 /src/server/shared/Database/QueryResult.h | |
parent | 9006e4e8dc1c2cbf30303dd2d5e34f3d9a2380a9 (diff) |
[Cosmetic] Apply codestyle "XXX * " and "XXX *" changed to "XXX* " (with some exceptions)
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 399779fb66f..6dc01076b59 100755 --- a/src/server/shared/Database/QueryResult.h +++ b/src/server/shared/Database/QueryResult.h @@ -40,7 +40,7 @@ class ResultSet uint64 GetRowCount() const { return m_rowCount; } uint32 GetFieldCount() const { return m_fieldCount; } - Field *Fetch() const { return m_currentRow; } + Field* Fetch() const { return m_currentRow; } const Field & operator [] (uint32 index) const { ASSERT(index < m_fieldCount); @@ -48,7 +48,7 @@ class ResultSet } protected: - Field *m_currentRow; + Field* m_currentRow; uint64 m_rowCount; uint32 m_fieldCount; |