fix warning

This commit is contained in:
Seth Alves 2017-04-06 15:41:35 -07:00
parent 21f810e040
commit 584905a618

View file

@ -96,7 +96,6 @@ Avatar::Avatar(RigPointer rig) :
_lastOrientation(), _lastOrientation(),
_worldUpDirection(DEFAULT_UP_DIRECTION), _worldUpDirection(DEFAULT_UP_DIRECTION),
_moving(false), _moving(false),
_initialized(false),
_smoothPositionTime(SMOOTH_TIME_POSITION), _smoothPositionTime(SMOOTH_TIME_POSITION),
_smoothPositionTimer(std::numeric_limits<float>::max()), _smoothPositionTimer(std::numeric_limits<float>::max()),
_smoothOrientationTime(SMOOTH_TIME_ORIENTATION), _smoothOrientationTime(SMOOTH_TIME_ORIENTATION),
@ -105,6 +104,7 @@ Avatar::Avatar(RigPointer rig) :
_smoothPositionTarget(), _smoothPositionTarget(),
_smoothOrientationInitial(), _smoothOrientationInitial(),
_smoothOrientationTarget(), _smoothOrientationTarget(),
_initialized(false),
_voiceSphereID(GeometryCache::UNKNOWN_ID) _voiceSphereID(GeometryCache::UNKNOWN_ID)
{ {
// we may have been created in the network thread, but we live in the main thread // we may have been created in the network thread, but we live in the main thread