From 31edd6a85f52c855d54594dc9f8ceda694d3ebea Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Sat, 1 Aug 2015 17:18:24 +0200 Subject: Switch to C++11, remove boost::shared_ptr --- src/TimestampDecoder.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/TimestampDecoder.cpp') diff --git a/src/TimestampDecoder.cpp b/src/TimestampDecoder.cpp index 5044366..2cfb281 100644 --- a/src/TimestampDecoder.cpp +++ b/src/TimestampDecoder.cpp @@ -28,8 +28,6 @@ #include #include #include -#include -#include #include #include "PcDebug.h" #include "TimestampDecoder.h" @@ -42,8 +40,8 @@ void TimestampDecoder::calculateTimestamp(struct frame_timestamp& ts) { - boost::shared_ptr ts_queued = - boost::make_shared(); + std::shared_ptr ts_queued = + std::make_shared(); /* Push new timestamp into queue */ ts_queued->timestamp_valid = full_timestamp_received_mnsc; -- cgit v1.2.3