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/dcp_reader.cc | |
| parent | 64eb1161584a9813591cf958fbc2fa0208d58ce8 (diff) | |
std::shared_ptr
Diffstat (limited to 'src/dcp_reader.cc')
| -rw-r--r-- | src/dcp_reader.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dcp_reader.cc b/src/dcp_reader.cc index a3ee8e5..5784ad0 100644 --- a/src/dcp_reader.cc +++ b/src/dcp_reader.cc @@ -30,9 +30,9 @@ using std::list; using std::cout; using std::string; using std::exception; -using boost::shared_ptr; +using std::shared_ptr; using boost::optional; -using boost::dynamic_pointer_cast; +using std::dynamic_pointer_cast; using namespace sub; static Time |
