From 75189e292d62945570cd28e46280a1c4748cc571 Mon Sep 17 00:00:00 2001 From: David Rowe Date: Tue, 13 Mar 2018 10:22:50 +1300 Subject: [PATCH] Fix OSX / Linux warning --- libraries/animation/src/Rig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/animation/src/Rig.cpp b/libraries/animation/src/Rig.cpp index f2f5d48713..848f384687 100644 --- a/libraries/animation/src/Rig.cpp +++ b/libraries/animation/src/Rig.cpp @@ -1445,7 +1445,7 @@ void Rig::updateEyeJoint(int index, const glm::vec3& modelTranslation, const glm // Update eye joint's children. auto children = index == _leftEyeJointIndex ? _leftEyeJointChildren : _rightEyeJointChildren; - for (int i = 0; i < children.size(); i++) { + for (int i = 0; i < (int)children.size(); i++) { int jointIndex = children[i]; int parentIndex = _animSkeleton->getParentIndex(jointIndex); _internalPoseSet._absolutePoses[jointIndex] =