From: apo Date: Fri, 28 Jan 2005 05:49:29 +0000 (+0000) Subject: Fix on [Bug PAL7900] g++ 3.3 compatibility X-Git-Tag: V2_2_0~28 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=bfcf9ccdeeb86a800841fb87770a854baecaab76;p=modules%2Fkernel.git Fix on [Bug PAL7900] g++ 3.3 compatibility --- diff --git a/src/SALOMEDS/SALOMEDS_SObject_i.cxx b/src/SALOMEDS/SALOMEDS_SObject_i.cxx index 6af22bf1c..1d95e8bd1 100644 --- a/src/SALOMEDS/SALOMEDS_SObject_i.cxx +++ b/src/SALOMEDS/SALOMEDS_SObject_i.cxx @@ -188,7 +188,7 @@ namespace SALOMEDS{ TAttrID2FunMap::const_iterator anEnd = __AttrID2FunMap__.end(); for(; anIter != anEnd; anIter++){ const TAttrID2FunMap::key_type& aKey = anIter->first; - const TAttrID2FunMap::data_type& aValue = anIter->second; + const TAttrID2FunMap::mapped_type& aValue = anIter->second; __GUID2AttrIDMap__[aValue.myGetGUID()] = aKey; };