[Points] 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:05:24 +01:00
committed by wwmayer
parent 8441f0f690
commit d812313edd

View File

@@ -40,7 +40,7 @@
#include <Base/Sequencer.h>
#include <Base/Stream.h>
#include <boost/shared_ptr.hpp>
#include <memory>
#include <boost/regex.hpp>
#include <boost/lexical_cast.hpp>
#include <boost/algorithm/string.hpp>
@@ -238,7 +238,7 @@ public:
}
};
typedef boost::shared_ptr<Converter> ConverterPtr;
typedef std::shared_ptr<Converter> ConverterPtr;
class DataStreambuf : public std::streambuf
{