1
0
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:
Sandu Liviu Catalin
2016-02-21 07:39:33 +02:00
parent 7f9169256d
commit a66904702e
3 changed files with 5 additions and 5 deletions

View File

@@ -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;