From 1702177691fb6bcb10c40e91efd1ad9c90537419 Mon Sep 17 00:00:00 2001 From: gdd Date: Thu, 7 Jun 2012 13:52:51 +0000 Subject: [PATCH] Fix for compilation with gcc 4.7 --- src/INTERP_KERNEL/IntersectorCU2D.txx | 2 +- src/INTERP_KERNEL/PointLocatorAlgos.txx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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()); -- 2.39.2