Changeset 2908 for code/branches/questsystem5/src/bullet/BulletCollision/CollisionDispatch/btUnionFind.h
- Timestamp:
- Apr 8, 2009, 12:58:47 AM (16 years ago)
- Location:
- code/branches/questsystem5
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/questsystem5
- Property svn:mergeinfo changed
-
code/branches/questsystem5/src/bullet/BulletCollision/CollisionDispatch/btUnionFind.h
r2907 r2908 99 99 int find(int x) 100 100 { 101 // btAssert(x < m_N);102 // btAssert(x >= 0);101 //assert(x < m_N); 102 //assert(x >= 0); 103 103 104 104 while (x != m_elements[x].m_id) … … 111 111 #endif // 112 112 x = m_elements[x].m_id; 113 // btAssert(x < m_N);114 // btAssert(x >= 0);113 //assert(x < m_N); 114 //assert(x >= 0); 115 115 116 116 }
Note: See TracChangeset
for help on using the changeset viewer.