From: mpv Date: Wed, 8 Jun 2005 04:52:11 +0000 (+0000) Subject: Porting to Mandrake 10.1 and new products: X-Git-Tag: T2_2_4a~3 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=de3649f7a36f586eb3917110c9fdc17f53399af7;p=modules%2Fsmesh.git Porting to Mandrake 10.1 and new products: new compiler gcc 3.4.1 --- diff --git a/src/Controls/SMESH_Controls.cxx b/src/Controls/SMESH_Controls.cxx index 084f07d9a..0e73c4fc8 100644 --- a/src/Controls/SMESH_Controls.cxx +++ b/src/Controls/SMESH_Controls.cxx @@ -354,7 +354,7 @@ namespace{ gp_Vec aVec2( P( 3 ) - P( 1 ) ); gp_Vec aVec3( P( 4 ) - P( 1 ) ); gp_Vec anAreaVec( aVec1 ^ aVec2 ); - return abs(aVec3 * anAreaVec) / 6.0; + return Abs(aVec3 * anAreaVec) / 6.0; } inline double getMaxHeight(double theLen[6])