+ Prefer prefix ++/-- operators for non-primitive types

This commit is contained in:
wmayer
2015-10-06 21:16:44 +02:00
parent 48bf07e622
commit f53a691bba
26 changed files with 123 additions and 122 deletions

View File

@@ -212,7 +212,7 @@ void PropertyGreyValueList::removeIndices( const std::vector<unsigned long>& uIn
else if (index != *pos)
remainValue.push_back( *it );
else
pos++;
++pos;
}
setValues(remainValue);
@@ -415,7 +415,7 @@ void PropertyNormalList::removeIndices( const std::vector<unsigned long>& uIndic
else if (index != *pos)
remainValue.push_back( *it );
else
pos++;
++pos;
}
setValues(remainValue);
@@ -541,7 +541,7 @@ void PropertyCurvatureList::removeIndices( const std::vector<unsigned long>& uIn
else if (index != *pos)
remainValue.push_back( *it );
else
pos++;
++pos;
}
setValues(remainValue);