From: adam Date: Fri, 26 Feb 2010 10:42:52 +0000 (+0000) Subject: Windows port X-Git-Tag: V5_1_main_FINAL~182 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=4b49ef3e9f18dcdd1e97a558ee7e2982f64062ad;p=tools%2Fmedcoupling.git Windows port --- diff --git a/src/INTERP_KERNEL/Bases/InterpKernelStlExt.hxx b/src/INTERP_KERNEL/Bases/InterpKernelStlExt.hxx index 1dfa16bb0..6489109c4 100644 --- a/src/INTERP_KERNEL/Bases/InterpKernelStlExt.hxx +++ b/src/INTERP_KERNEL/Bases/InterpKernelStlExt.hxx @@ -33,7 +33,7 @@ namespace INTERP_KERNEL }; template - inline void Construct(_T1* __p, const _T2& __value) { ::new(static_cast(__p)) _T1(__value); } + inline void Construct(_T1* __p, const _T2& __value__) { ::new(static_cast(__p)) _T1(__value__); } template inline void Destroy(_Tp* __pointer) { __pointer->~_Tp(); } }