author | Tom Tromey <tom@tromey.com> | 2020年06月10日 22:35:15 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2023年01月29日 18:23:29 -0700 |
commit | d2bfd88a741cc7e2384c94a6d2104b3e5a458371 (patch) | |
tree | 48e1fcce1d114b47df35721fdad59f7b2549eaca /lib/srchilite/linebuffer.h | |
parent | e45099f4068ba514d1a934ccbf079c23e6ca08fb (diff) | |
download | src-highlite-d2bfd88a741cc7e2384c94a6d2104b3e5a458371.tar.gz |
-rw-r--r-- | lib/srchilite/linebuffer.h | 4 |
diff --git a/lib/srchilite/linebuffer.h b/lib/srchilite/linebuffer.h index 9e6ab6d..dfbc815 100644 --- a/lib/srchilite/linebuffer.h +++ b/lib/srchilite/linebuffer.h @@ -9,7 +9,7 @@ #include <string> #include <set> -#include <boost/shared_ptr.hpp> +#include <memory> #include <sstream> @@ -70,7 +70,7 @@ public: }; /// shared pointer for LineBuffer -typedef boost::shared_ptr<LineBuffer> LineBufferPtr; +typedef std::shared_ptr<LineBuffer> LineBufferPtr; } |