]> Creatis software - clitk.git/blobdiff - itk/clitkForwardWarpImageFilter.txx
Remove vcl_math calls
[clitk.git] / itk / clitkForwardWarpImageFilter.txx
index 4d49b4dd7e98cf9d5797fcc4127eb29d86963614..88804f5248175517f578612382685981deb88277 100644 (file)
@@ -184,7 +184,7 @@ void HelperClass1<InputImageType, OutputImageType, DeformationFieldType>::Thread
       for(dim = 0; dim < ImageDimension; dim++) {
         // The following  block is equivalent to the following line without
         // having to call floor. For positive inputs!!!
-        // 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] );
       }