1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-27 22:49:25 +02:00

Remove duplicate semicolons

This commit is contained in:
Alexander Wilms
2024-01-16 19:02:39 +00:00
parent a5e95cce96
commit cca08e29da
20 changed files with 26 additions and 26 deletions

View File

@@ -293,7 +293,7 @@ void PlayerMessageProcessor::cheatMovement(PlayerColor player, const CGHeroInsta
bool unlimited = false;
try
{
smp.val = std::stol(words.at(0));;
smp.val = std::stol(words.at(0));
}
catch(std::logic_error&)
{
@@ -326,7 +326,7 @@ void PlayerMessageProcessor::cheatResources(PlayerColor player, std::vector<std:
int baseResourceAmount;
try
{
baseResourceAmount = std::stol(words.at(0));;
baseResourceAmount = std::stol(words.at(0));
}
catch(std::logic_error&)
{