summaryrefslogtreecommitdiff
path: root/src/reader_factory.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-12-20 14:11:13 +0100
committerCarl Hetherington <cth@carlh.net>2021-01-05 02:09:49 +0100
commit47727a7c80b60a0fd0ce18d8347b14241fc48f97 (patch)
treee1137ad3c8dc58ef5017011cdcc89a378b223092 /src/reader_factory.h
parent64eb1161584a9813591cf958fbc2fa0208d58ce8 (diff)
std::shared_ptr
Diffstat (limited to 'src/reader_factory.h')
-rw-r--r--src/reader_factory.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/reader_factory.h b/src/reader_factory.h
index e7c349b..e519468 100644
--- a/src/reader_factory.h
+++ b/src/reader_factory.h
@@ -17,14 +17,14 @@
*/
-#include <boost/shared_ptr.hpp>
+#include <memory>
#include <boost/filesystem.hpp>
namespace sub {
class Reader;
-extern boost::shared_ptr<Reader>
+extern std::shared_ptr<Reader>
reader_factory (boost::filesystem::path);
}