Remove unnecessary semicolons

This commit is contained in:
Chris Thrasher 2024-10-07 22:58:12 -06:00 committed by Lukas Dürrenberger
parent f8d77ea822
commit da1f652c22
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ namespace
std::string vec2ToString(const sf::Vector2i vec2) std::string vec2ToString(const sf::Vector2i vec2)
{ {
return '(' + std::to_string(vec2.x) + ", " + std::to_string(vec2.y) + ')'; return '(' + std::to_string(vec2.x) + ", " + std::to_string(vec2.y) + ')';
}; }
} // namespace } // namespace

View File

@ -252,7 +252,7 @@ sf::Vertex computeVertex(sf::Vector2u position)
getElevation(position + sf::Vector2u(0, 1)), getElevation(position + sf::Vector2u(0, 1)),
getElevation(position - sf::Vector2u(0, 1))); getElevation(position - sf::Vector2u(0, 1)));
return vertex; return vertex;
}; }
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////