diff options
Diffstat (limited to 'gnuradio-runtime/include/gnuradio/thrift_application_base.h')
-rw-r--r-- | gnuradio-runtime/include/gnuradio/thrift_application_base.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-runtime/include/gnuradio/thrift_application_base.h b/gnuradio-runtime/include/gnuradio/thrift_application_base.h index 4d25029e56..642bba68b5 100644 --- a/gnuradio-runtime/include/gnuradio/thrift_application_base.h +++ b/gnuradio-runtime/include/gnuradio/thrift_application_base.h @@ -51,7 +51,7 @@ public: // Stores the generated endpoint string after the Thrift runtime has initialized. std::string d_endpointStr; // Thread to execute the Thrift runtime's blocking serve() function. - boost::shared_ptr<gr::thread::thread> d_start_thrift_thread; + std::shared_ptr<gr::thread::thread> d_start_thrift_thread; }; /*! @@ -114,7 +114,7 @@ protected: /*! * Reference to the Thrift runtime. */ - boost::scoped_ptr<apache::thrift::server::TServer> d_thriftserver; + std::unique_ptr<apache::thrift::server::TServer> d_thriftserver; /*! * Max number of attempts when checking the Thrift runtime for |