From: ageay Date: Fri, 16 Apr 2010 10:29:34 +0000 (+0000) Subject: Ok for no "using namespace std;" but please no tab too. X-Git-Tag: V5_1_main_FINAL~126 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=3989dfd66832114743b9c89e7d8566df9eab9433;p=tools%2Fmedcoupling.git Ok for no "using namespace std;" but please no tab too. --- diff --git a/src/INTERP_KERNEL/BoundingBox.cxx b/src/INTERP_KERNEL/BoundingBox.cxx index ea42bb2d0..2623b37f5 100644 --- a/src/INTERP_KERNEL/BoundingBox.cxx +++ b/src/INTERP_KERNEL/BoundingBox.cxx @@ -45,7 +45,7 @@ namespace INTERP_KERNEL for(BoxCoord c = XMIN ; c <= ZMIN ; c = BoxCoord(c + 1)) { - _coords[c] = std::min(pt1[c], pt2[c]); + _coords[c] = std::min(pt1[c], pt2[c]); _coords[c + 3] = std::max(pt1[c], pt2[c]); } diff --git a/src/INTERP_KERNEL/UnitTetraIntersectionBary.cxx b/src/INTERP_KERNEL/UnitTetraIntersectionBary.cxx index 3dbcd7f91..58fbeecc7 100644 --- a/src/INTERP_KERNEL/UnitTetraIntersectionBary.cxx +++ b/src/INTERP_KERNEL/UnitTetraIntersectionBary.cxx @@ -141,7 +141,7 @@ namespace INTERP_KERNEL if (_isTetraInversed) reverse = !reverse; // store polygon - _faces.push_back( std::vector< double* > () ); + _faces.push_back( std::vector< double* > () ); std::vector< double* >& faceCorner = _faces.back(); faceCorner.resize( pPolygonA->size()/* + 1*/ );