Salome HOME
Fix usage of Boost smart pointers for compatibility with Boost >= 1.53
[modules/smesh.git] / src / MEDWrapper / Base / MED_SharedPtr.hxx
index 712b4aa46ee48232f4b14456c5debe60dac64b9b..0c52a2062a0843557867e42439426221bb8c95ef 100644 (file)
@@ -48,7 +48,7 @@ namespace MED
     //! Construct the class by any specialisation of the class
     template<class Y>
     SharedPtr(SharedPtr<Y> const & r):
-      boost::shared_ptr<T>(r,boost::detail::dynamic_cast_tag())
+      boost::shared_ptr<T>(boost::dynamic_pointer_cast<T,Y>(r))
     {}
 
     //! Copy-constructor
@@ -56,7 +56,7 @@ namespace MED
     SharedPtr& 
     operator=(SharedPtr<Y> const & r)
     {
-      boost::shared_ptr<T>(r,boost::detail::dynamic_cast_tag()).swap(*this);
+      SharedPtr<T>(r).swap(*this);
       return *this;
     }