]> Creatis software - clitk.git/blobdiff - itk/clitkInvertVFFilter.txx
Remove vcl_math calls
[clitk.git] / itk / clitkInvertVFFilter.txx
index b2485e0e51a5f6c260c3aeed26cfc5575c396543..ec3c90fe31b8e4532ec81f02632daf9621ad3214 100644 (file)
@@ -169,7 +169,7 @@ void HelperClass1<InputImageType, OutputImageType>::ThreadedGenerateData(const O
       for(dim = 0; dim < ImageDimension; dim++) {
         // The following  block is equivalent to the following line without
         // having to call floor. (Only for positive inputs, we already now that is in the image)
-        // baseIndex[dim] = (long) vcl_floor(contIndex[dim] );
+        // baseIndex[dim] = (long) std::floor(contIndex[dim] );
 
         baseIndex[dim] = (long) contIndex[dim];
         distance[dim] = contIndex[dim] - double( baseIndex[dim] );