test: minor changes
This commit is contained in:
@@ -15,7 +15,7 @@ struct boxed_int {
|
||||
int value;
|
||||
};
|
||||
|
||||
bool operator==(const boxed_int &lhs, const boxed_int &rhs) {
|
||||
inline bool operator==(const boxed_int &lhs, const boxed_int &rhs) {
|
||||
return lhs.value == rhs.value;
|
||||
}
|
||||
|
||||
|
||||
@@ -81,7 +81,7 @@ struct entt::component_traits<std::unordered_set<char>> {
|
||||
static constexpr auto page_size = 128u;
|
||||
};
|
||||
|
||||
bool operator==(const boxed_int &lhs, const boxed_int &rhs) {
|
||||
inline bool operator==(const boxed_int &lhs, const boxed_int &rhs) {
|
||||
return lhs.value == rhs.value;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user