From 9ac8b732f09d377b9b26e6811b55fb0a45db6b0e Mon Sep 17 00:00:00 2001 From: barnold1953 Date: Thu, 24 Jul 2014 10:32:34 -0700 Subject: [PATCH] FIxed error on ubuntu --- libraries/avatars/src/HeadData.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/avatars/src/HeadData.cpp b/libraries/avatars/src/HeadData.cpp index 31001bf162..b29277ddeb 100644 --- a/libraries/avatars/src/HeadData.cpp +++ b/libraries/avatars/src/HeadData.cpp @@ -65,7 +65,7 @@ void HeadData::setBlendshape(QString name, float val) { } //Check to see if the named blendshape exists, and then set its value if it does - auto it = blendshapeLookupMap.find(name); + QMap::iterator it = blendshapeLookupMap.find(name); if (it != blendshapeLookupMap.end()) { if (_blendshapeCoefficients.size() <= it.value()) { _blendshapeCoefficients.resize(it.value() + 1);