refactor by request

This commit is contained in:
AzaezelX 2023-10-15 15:35:28 -05:00 committed by Brian Roberts
parent 3bdce1f33e
commit 4fb67ed618

View file

@ -86,11 +86,7 @@ struct SceneBinRange
inline bool operator!=(const SceneBinRange& other) const
{
if (memcmp(minCoord, other.minCoord, sizeof(minCoord)) == 0 &&
memcmp(maxCoord, other.maxCoord, sizeof(maxCoord)) == 0)
return false;
else
return true;
return !(*this == other);
}
};