[Fem] Use std::shared_ptr instead of boost::shared_ptr

There's no need to use boost version when stl has support for shared_ptr
This commit is contained in:
Benjamin Nauck
2021-03-06 01:04:43 +01:00
committed by wwmayer
parent 82e423735f
commit 1384903af8
3 changed files with 9 additions and 9 deletions

View File

@@ -71,7 +71,7 @@
using namespace Fem;
HypothesisPy::HypothesisPy(boost::shared_ptr<SMESH_Hypothesis> h)
HypothesisPy::HypothesisPy(std::shared_ptr<SMESH_Hypothesis> h)
: hyp(h)
{
}