mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-25 19:31:59 +01:00
Add spaces after commas
This commit is contained in:
@@ -228,7 +228,7 @@ bool MySQLPreparedStatement::CheckValidIndex(uint8 index)
|
||||
return true;
|
||||
}
|
||||
|
||||
void MySQLPreparedStatement::setBool(const uint8 index,const bool value)
|
||||
void MySQLPreparedStatement::setBool(const uint8 index, const bool value)
|
||||
{
|
||||
setUInt32(index, value);
|
||||
}
|
||||
@@ -374,7 +374,7 @@ std::string MySQLPreparedStatement::getQueryString(const char *query)
|
||||
break;
|
||||
}
|
||||
replace << "'";
|
||||
queryString.replace(pos,1, replace.str());
|
||||
queryString.replace(pos, 1, replace.str());
|
||||
}
|
||||
|
||||
return queryString;
|
||||
|
||||
Reference in New Issue
Block a user