mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-07-22 16:57:12 +02:00
Prefix library names to avoid poluting the global scope.
Fix consistent naming through base types.
This commit is contained in:
@@ -291,11 +291,11 @@ bool AABB::operator >= (const AABB & b) const
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------------------------------------
|
||||
Int32 AABB::Cmp(const AABB & b) const
|
||||
Int32 AABB::Cmp(const AABB & o) const
|
||||
{
|
||||
if (*this == b)
|
||||
if (*this == o)
|
||||
return 0;
|
||||
else if (*this > b)
|
||||
else if (*this > o)
|
||||
return 1;
|
||||
else
|
||||
return -1;
|
||||
|
Reference in New Issue
Block a user