diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-08-01 17:18:24 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-08-01 17:18:24 +0200 |
commit | 31edd6a85f52c855d54594dc9f8ceda694d3ebea (patch) | |
tree | 60ad2c84d28a495082e0b083e072a934bc142634 /src/TimestampDecoder.h | |
parent | 1c25545bb03ea074b5871be3234bf0d1be20a6a3 (diff) | |
download | dabmod-31edd6a85f52c855d54594dc9f8ceda694d3ebea.tar.gz dabmod-31edd6a85f52c855d54594dc9f8ceda694d3ebea.tar.bz2 dabmod-31edd6a85f52c855d54594dc9f8ceda694d3ebea.zip |
Switch to C++11, remove boost::shared_ptr
Diffstat (limited to 'src/TimestampDecoder.h')
-rw-r--r-- | src/TimestampDecoder.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/TimestampDecoder.h b/src/TimestampDecoder.h index d8ab633..9420506 100644 --- a/src/TimestampDecoder.h +++ b/src/TimestampDecoder.h @@ -28,7 +28,7 @@ #define TIMESTAMP_DECODER_H #include <queue> -#include <boost/shared_ptr.hpp> +#include <memory> #include <string> #include <time.h> #include <math.h> @@ -192,7 +192,7 @@ class TimestampDecoder : public RemoteControllable * synchronise two modulators if only one uses (for instance) the * FIRFilter (1 stage pipeline) */ - std::queue<boost::shared_ptr<struct frame_timestamp> > queue_timestamps; + std::queue<std::shared_ptr<struct frame_timestamp> > queue_timestamps; }; |