fixed several gcc 4.1 warnings

This commit is contained in:
Vadim Pisarevsky
2010-10-21 18:30:57 +00:00
parent b80bdf324d
commit 4a14795eb6
15 changed files with 34 additions and 33 deletions

View File

@@ -7,6 +7,7 @@
// a(y - q1) + b(q1 - y)(q1 - y) + f[q1]
// a(y - q2) + b(q2 - y)(q2 - y) + f[q2]
//
//
// API
// int GetPointOfIntersection(const float *f,
const float a, const float b,
@@ -393,4 +394,4 @@ int DistanceTransformTwoDimensionalProblem(const float *f,
free(internalDistTrans);
free(internalPointsX);
return DISTANCE_TRANSFORM_OK;
}
}