]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
More generic.
authorageay <ageay>
Thu, 25 Feb 2010 17:49:10 +0000 (17:49 +0000)
committerageay <ageay>
Thu, 25 Feb 2010 17:49:10 +0000 (17:49 +0000)
src/INTERP_KERNEL/ExprEval/InterpKernelValue.cxx

index 7f0c78bb8a1532fcf4ae85383a3f87be56db01d9..70e5faf77abd0645a2fcac41ee0d44c20bf4a1ef 100644 (file)
@@ -326,7 +326,7 @@ void ValueDoubleExpr::tan() throw(INTERP_KERNEL::Exception)
 
 void ValueDoubleExpr::abs() throw(INTERP_KERNEL::Exception)
 {
-  std::transform(_dest_data,_dest_data+_sz_dest_data,_dest_data,std::ptr_fun(fabs));
+  std::transform(_dest_data,_dest_data+_sz_dest_data,_dest_data,std::ptr_fun<double,double>(fabs));
 }
 
 void ValueDoubleExpr::exp() throw(INTERP_KERNEL::Exception)