diff options
Diffstat (limited to 'src/server/shared/Database/PreparedStatement.h')
-rwxr-xr-x | src/server/shared/Database/PreparedStatement.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/shared/Database/PreparedStatement.h b/src/server/shared/Database/PreparedStatement.h index ad79417c6ac..97240d79801 100755 --- a/src/server/shared/Database/PreparedStatement.h +++ b/src/server/shared/Database/PreparedStatement.h @@ -75,7 +75,7 @@ class PreparedStatement explicit PreparedStatement(uint32 index); ~PreparedStatement(); - void setBool(const uint8 index,const bool value); + void setBool(const uint8 index, const bool value); void setUInt8(const uint8 index, const uint8 value); void setUInt16(const uint8 index, const uint16 value); void setUInt32(const uint8 index, const uint32 value); @@ -109,7 +109,7 @@ class MySQLPreparedStatement MySQLPreparedStatement(MYSQL_STMT* stmt); ~MySQLPreparedStatement(); - void setBool(const uint8 index,const bool value); + void setBool(const uint8 index, const bool value); void setUInt8(const uint8 index, const uint8 value); void setUInt16(const uint8 index, const uint16 value); void setUInt32(const uint8 index, const uint32 value); |