// check myMaxDegree >= aCurves.size() - 1 to be able to interpolate a surface
if (myMaxDegree + 1 < aNbCurves) {
- myError = "Unable to interpolate surface, Max deg + 1 should be greater or equal than number of sections.";
+ myError = "Unable to interpolate surface,"
+ " Max deg + 1 should be greater or equal than number of sections.";
return;
}
int aFullIndex = 0;
NbFeaturesMap::const_iterator aFIt = myFeatureCount.begin();
for (; aFIt != myFeatureCount.end(); ++aFIt) {
- std::map<std::string, std::pair<int, int> >::const_iterator aFound = aFIt->second.find(aKind);
+ std::map<std::string, std::pair<int, int> >::const_iterator aFound =
+ aFIt->second.find(aKind);
if (aFound != aFIt->second.end())
aFullIndex += aFound->second.first;
}