Add spaces after commas

This commit is contained in:
leak
2011-04-29 20:47:02 +02:00
parent 01a79947d5
commit 1003f30448
645 changed files with 9439 additions and 9439 deletions

View File

@@ -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;