From: ageay Date: Thu, 25 Feb 2010 17:58:09 +0000 (+0000) Subject: To avoid Windows keyword __value. X-Git-Tag: V5_1_main_FINAL~185 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=cbc3672062d1bc27978681167812229d1bf9f364;p=tools%2Fmedcoupling.git To avoid Windows keyword __value. --- diff --git a/src/INTERP_KERNEL/Bases/InterpKernelHashMap.hxx b/src/INTERP_KERNEL/Bases/InterpKernelHashMap.hxx index 0bb717600..117bfba68 100644 --- a/src/INTERP_KERNEL/Bases/InterpKernelHashMap.hxx +++ b/src/INTERP_KERNEL/Bases/InterpKernelHashMap.hxx @@ -369,9 +369,9 @@ namespace std insert_iterator(_Container& __x, typename _Container::iterator) : container(&__x) {} - insert_iterator<_Container>& operator=(const typename _Container::value_type& __value) + insert_iterator<_Container>& operator=(const typename _Container::value_type& __value__) { - container->insert(__value); + container->insert(__value__); return *this; } @@ -404,9 +404,9 @@ namespace std insert_iterator(_Container& __x, typename _Container::iterator) : container(&__x) {} - insert_iterator<_Container>& operator=(const typename _Container::value_type& __value) + insert_iterator<_Container>& operator=(const typename _Container::value_type& __value__) { - container->insert(__value); + container->insert(__value__); return *this; }