From: gdd Date: Thu, 7 Jun 2012 13:52:51 +0000 (+0000) Subject: Fix for compilation with gcc 4.7 X-Git-Tag: V6_main_FINAL~657 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=1702177691fb6bcb10c40e91efd1ad9c90537419;p=tools%2Fmedcoupling.git Fix for compilation with gcc 4.7 --- diff --git a/src/INTERP_KERNEL/IntersectorCU2D.txx b/src/INTERP_KERNEL/IntersectorCU2D.txx index ee2d36c25..cade7ceb3 100644 --- a/src/INTERP_KERNEL/IntersectorCU2D.txx +++ b/src/INTERP_KERNEL/IntersectorCU2D.txx @@ -57,7 +57,7 @@ namespace INTERP_KERNEL const std::vector& icellS) { std::vector uCoords; - getUCoordinates( icellT, uCoords ); + this->getUCoordinates( icellT, uCoords ); NormalizedCellType tT = INTER_CU::_meshU.getTypeOfElement( _TMIU(icellT)); bool is_tgt_quad = CellModel::GetCellModel(tT).isQuadratic(); diff --git a/src/INTERP_KERNEL/PointLocatorAlgos.txx b/src/INTERP_KERNEL/PointLocatorAlgos.txx index d30ea1540..db6972d2a 100644 --- a/src/INTERP_KERNEL/PointLocatorAlgos.txx +++ b/src/INTERP_KERNEL/PointLocatorAlgos.txx @@ -302,8 +302,8 @@ namespace INTERP_KERNEL if ( !sonNodesSet.count( conn_elem[cn] )) { simplexConn.back() = conn_elem[cn]; - if ( isElementContainsPoint( x, simlexType, coords, - &simplexConn[0], simplexConn.size(), eps )) + if ( this->isElementContainsPoint( x, simlexType, coords, + &simplexConn[0], simplexConn.size(), eps )) { simplexNodes.insert( simplexNodes.end(), simplexConn.begin(), simplexConn.end());