mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-02 09:52:27 -04:00
*** empty log message ***
This commit is contained in:
parent
22fc57ba0a
commit
3c6703cb9c
@ -135,7 +135,13 @@ get_local_bound(int n) const {
|
|||||||
nassertr(n >= 0 && n < (int)_colliders.size(), NULL);
|
nassertr(n >= 0 && n < (int)_colliders.size(), NULL);
|
||||||
nassertr(has_collider(n), NULL);
|
nassertr(has_collider(n), NULL);
|
||||||
nassertr(n >= 0 && n < (int)_local_bounds.size(), NULL);
|
nassertr(n >= 0 && n < (int)_local_bounds.size(), NULL);
|
||||||
return _local_bounds[n];
|
|
||||||
|
// For whatever reason, the Intel compiler can't figure this line
|
||||||
|
// out.
|
||||||
|
//return _local_bounds[n];
|
||||||
|
|
||||||
|
// But it can figure out this equivalent line.
|
||||||
|
return *(_local_bounds + n);
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
|
@ -26,7 +26,8 @@
|
|||||||
lineStreamBuf.cxx lineStreamBuf.h modifierButtons.I \
|
lineStreamBuf.cxx lineStreamBuf.h modifierButtons.I \
|
||||||
modifierButtons.cxx modifierButtons.h \
|
modifierButtons.cxx modifierButtons.h \
|
||||||
mouseButton.cxx mouseButton.h mouseData.cxx mouseData.h \
|
mouseButton.cxx mouseButton.h mouseData.cxx mouseData.h \
|
||||||
nameUniquifier.I nameUniquifier.cxx nameUniquifier.h pta_double.cxx \
|
nameUniquifier.I nameUniquifier.cxx nameUniquifier.h \
|
||||||
|
pointerToArray.I pointerToArray.h pta_double.cxx \
|
||||||
pta_double.h pta_float.cxx pta_float.h pta_int.cxx pta_int.h \
|
pta_double.h pta_float.cxx pta_float.h pta_int.cxx pta_int.h \
|
||||||
pta_uchar.cxx pta_uchar.h pta_ushort.cxx pta_ushort.h \
|
pta_uchar.cxx pta_uchar.h pta_ushort.cxx pta_ushort.h \
|
||||||
string_utils.I string_utils.N string_utils.cxx string_utils.h \
|
string_utils.I string_utils.N string_utils.cxx string_utils.h \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user