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

@@ -15,7 +15,7 @@ struct Box {
static auto Intersection(Box a, Box b) -> Box;
static auto Union(Box a, Box b) -> Box;
bool Contain(int x, int y) const;
bool IsEmpty();
bool IsEmpty() const;
bool operator==(const Box& other) const;
bool operator!=(const Box& other) const;
};