From 863d9fe32fbff286d4c359d6a5c29184ed511866 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Mon, 21 Dec 2015 22:53:23 +0100 Subject: Replace some boost shared_ptr by std ones --- src/ConfigParser.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/ConfigParser.cpp') diff --git a/src/ConfigParser.cpp b/src/ConfigParser.cpp index db01769..8795277 100644 --- a/src/ConfigParser.cpp +++ b/src/ConfigParser.cpp @@ -39,6 +39,7 @@ #include #include #include +#include #include #include #include @@ -143,8 +144,8 @@ uint16_t get_announcement_flag_from_ptree( } void parse_ptree(boost::property_tree::ptree& pt, - boost::shared_ptr ensemble, - boost::shared_ptr rc + std::shared_ptr ensemble, + std::shared_ptr rc ) { using boost::property_tree::ptree; @@ -554,9 +555,9 @@ void parse_ptree(boost::property_tree::ptree& pt, void setup_subchannel_from_ptree(dabSubchannel* subchan, boost::property_tree::ptree &pt, - boost::shared_ptr ensemble, + std::shared_ptr ensemble, string subchanuid, - boost::shared_ptr rc) + std::shared_ptr rc) { using boost::property_tree::ptree; using boost::property_tree::ptree_error; -- cgit v1.2.3