mirror of
https://github.com/SFML/SFML.git
synced 2024-11-24 20:31:05 +08:00
Remove unnecessary semicolons
This commit is contained in:
parent
f8d77ea822
commit
da1f652c22
@ -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
|
||||||
|
|
||||||
|
|
||||||
|
@ -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;
|
||||||
};
|
}
|
||||||
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
Loading…
Reference in New Issue
Block a user