std::shared_ptr
[dcpomatic.git] / src / lib / zipper.h
index a981a22b7a18044bb794833a71a4f6d70308e18a..c2b40556c051b04ab9839d8bcae334a4361f5393 100644 (file)
@@ -20,7 +20,6 @@
 
 #include <boost/noncopyable.hpp>
 #include <boost/filesystem.hpp>
-#include <boost/shared_ptr.hpp>
 #include <vector>
 
 class Zipper : public boost::noncopyable
@@ -34,6 +33,6 @@ public:
 
 private:
        struct zip* _zip;
-       std::vector<boost::shared_ptr<std::string> > _store;
+       std::vector<std::shared_ptr<std::string> > _store;
 };