Apply clang-tidy.

This commit is contained in:
ArthurSonzogni
2024-04-28 10:39:30 +02:00
parent affa787244
commit 7e3e1d4bca
3 changed files with 5 additions and 5 deletions

View File

@@ -41,7 +41,7 @@ bool Box::Contain(int x, int y) const {
/// @return whether the box is empty.
/// @ingroup screen
bool Box::IsEmpty() {
bool Box::IsEmpty() const {
return x_min > x_max || y_min > y_max;
}