From d39880eef211a296fa8ef4712cdef5945d08527c Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 20 Dec 2020 14:14:07 +0100 Subject: std::shared_ptr --- src/frame.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/frame.h') diff --git a/src/frame.h b/src/frame.h index 69983c4a..7aa471fd 100644 --- a/src/frame.h +++ b/src/frame.h @@ -46,7 +46,7 @@ template class Frame : public boost::noncopyable { public: - Frame (R* reader, int n, boost::shared_ptr c) + Frame (R* reader, int n, std::shared_ptr c) { /* XXX: unfortunate guesswork on this buffer size */ _buffer.reset(new B(Kumu::Megabyte)); @@ -67,7 +67,7 @@ public: } private: - boost::shared_ptr _buffer; + std::shared_ptr _buffer; }; } -- cgit v1.2.3