X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FMEDWrapper%2FBase%2FMED_SharedPtr.hxx;h=914946c29784a9f5e14e5f3c2649b828499d27aa;hb=d5029840731bccaa1718e65f0abf3b19198c7293;hp=d0f4746c6eb475e94e5dae7b28cd9fb5dc98432e;hpb=7ec258416f5fd16634ee4ab7c789f9af809dee18;p=modules%2Fsmesh.git diff --git a/src/MEDWrapper/Base/MED_SharedPtr.hxx b/src/MEDWrapper/Base/MED_SharedPtr.hxx index d0f4746c6..914946c29 100644 --- a/src/MEDWrapper/Base/MED_SharedPtr.hxx +++ b/src/MEDWrapper/Base/MED_SharedPtr.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE // // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS @@ -6,7 +6,7 @@ // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either -// version 2.1 of the License. +// version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -19,7 +19,6 @@ // // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // -// #ifndef MED_SharedPtr_HeaderFile #define MED_SharedPtr_HeaderFile @@ -49,7 +48,7 @@ namespace MED //! Construct the class by any specialisation of the class template SharedPtr(SharedPtr const & r): - boost::shared_ptr(r,boost::detail::dynamic_cast_tag()) + boost::shared_ptr(boost::dynamic_pointer_cast(r)) {} //! Copy-constructor @@ -57,7 +56,7 @@ namespace MED SharedPtr& operator=(SharedPtr const & r) { - boost::shared_ptr(r,boost::detail::dynamic_cast_tag()).swap(*this); + SharedPtr(r).swap(*this); return *this; }