feat(CI/Codestyle); Check for double semicolons (#20996)

This commit is contained in:
Kitzunu
2024-12-21 22:19:49 +01:00
committed by GitHub
parent 08d5861a51
commit d2b88bdc1e
5 changed files with 12 additions and 4 deletions

View File

@@ -38,7 +38,7 @@ void Player::_LoadCharacterSettings(PreparedQueryResult result)
{
Field* fields = result->Fetch();
std::string source = fields[0].Get<std::string>();;
std::string source = fields[0].Get<std::string>();
std::string data = fields[1].Get<std::string>();
std::vector<std::string_view> tokens = Acore::Tokenize(data, ' ', false);