remove warning about signed/unsigned comparison

This commit is contained in:
Andrew Meadows 2015-09-22 17:19:47 -07:00
parent 17b2bf1c33
commit 11fee94459

View file

@ -193,7 +193,7 @@ public:
int getBlendshapeCoefficientsNum() const { return _blendshapeCoefficients.size(); }
float getBlendshapeCoefficient(unsigned int index) const {
return index >= _blendshapeCoefficients.size() ? 0.0f : _blendshapeCoefficients.at(index);
return index >= (unsigned int)_blendshapeCoefficients.size() ? 0.0f : _blendshapeCoefficients.at(index);
}
protected: