[MacOSX] Fix for name collision with OSX headers, Maciej, Tomasz or others feel free to rework if you want/like
This commit is contained in:
parent
4456840a1f
commit
d2083b0671
|
@ -32,10 +32,10 @@
|
|||
|
||||
#define ASSERT assert // RTree uses ASSERT( condition )
|
||||
#ifndef Min
|
||||
#define Min std::min
|
||||
#define rMin std::min
|
||||
#endif // Min
|
||||
#ifndef Max
|
||||
#define Max std::max
|
||||
#define rMax std::max
|
||||
#endif // Max
|
||||
|
||||
//
|
||||
|
@ -1326,8 +1326,8 @@ typename RTREE_QUAL::Rect RTREE_QUAL::CombineRect( Rect* a_rectA, Rect* a_rectB
|
|||
|
||||
for( int index = 0; index < NUMDIMS; ++index )
|
||||
{
|
||||
newRect.m_min[index] = Min( a_rectA->m_min[index], a_rectB->m_min[index] );
|
||||
newRect.m_max[index] = Max( a_rectA->m_max[index], a_rectB->m_max[index] );
|
||||
newRect.m_min[index] = rMin( a_rectA->m_min[index], a_rectB->m_min[index] );
|
||||
newRect.m_max[index] = rMax( a_rectA->m_max[index], a_rectB->m_max[index] );
|
||||
}
|
||||
|
||||
return newRect;
|
||||
|
|
Loading…
Reference in New Issue