diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-12-20 14:11:13 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-05 02:09:49 +0100 |
| commit | 47727a7c80b60a0fd0ce18d8347b14241fc48f97 (patch) | |
| tree | e1137ad3c8dc58ef5017011cdcc89a378b223092 /src/util.cc | |
| parent | 64eb1161584a9813591cf958fbc2fa0208d58ce8 (diff) | |
std::shared_ptr
Diffstat (limited to 'src/util.cc')
| -rw-r--r-- | src/util.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util.cc b/src/util.cc index 89af13f..c347375 100644 --- a/src/util.cc +++ b/src/util.cc @@ -21,7 +21,7 @@ #include "reader.h" #include "subtitle.h" #include "collect.h" -#include <boost/shared_ptr.hpp> +#include <memory> #include <string> #include <iostream> #include <cstdio> @@ -33,7 +33,7 @@ using std::ostream; using std::map; using std::list; using boost::optional; -using boost::shared_ptr; +using std::shared_ptr; using namespace sub; /** @param s A string. |
