diff options
Diffstat (limited to 'gnuradio-runtime/include/gnuradio/rpcserver_booter_aggregator.h')
-rw-r--r-- | gnuradio-runtime/include/gnuradio/rpcserver_booter_aggregator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-runtime/include/gnuradio/rpcserver_booter_aggregator.h b/gnuradio-runtime/include/gnuradio/rpcserver_booter_aggregator.h index f7ae2c7c1b..06831ffc27 100644 --- a/gnuradio-runtime/include/gnuradio/rpcserver_booter_aggregator.h +++ b/gnuradio-runtime/include/gnuradio/rpcserver_booter_aggregator.h @@ -14,7 +14,7 @@ #include <gnuradio/api.h> #include <gnuradio/rpcserver_aggregator.h> #include <gnuradio/rpcserver_booter_base.h> -#include <boost/shared_ptr.hpp> +#include <memory> #include <string> class rpcserver_server; @@ -37,7 +37,7 @@ protected: private: std::string d_type; - boost::shared_ptr<rpcserver_aggregator> server; + std::shared_ptr<rpcserver_aggregator> server; }; #endif /* RPCSERVER_BOOTER_AGGREGATOR */ |