egg-qtess: Squelch compiler warning

This commit is contained in:
rdb 2021-11-29 14:49:41 +01:00
parent 653cc3e091
commit ab9830b6ff

View File

@ -109,11 +109,13 @@ place(int count, pvector<double> &iso_points) {
int i;
// Count up the average curvature.
/*
double avg_curve = 0.0;
for (i = 0; i < _maxi; i++) {
avg_curve += _cscore[i];
}
avg_curve /= (double)_maxi;
*/
// Find all the local maxima in the curvature table. These are bend points.
typedef pvector<int> BendPoints;