bladeRF: convert to using std instead of boost for shared_ptr

This commit is contained in:
Robert Ghilduta 2021-04-14 01:39:52 -07:00 committed by Eric Wild
parent 038a26501c
commit 821fdb3822
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ size_t num_streams(bladerf_channel_layout layout)
* Public methods
******************************************************************************/
bladerf_common::bladerf_common() :
_dev(boost::shared_ptr<struct bladerf>()),
_dev(std::shared_ptr<struct bladerf>()),
_pfx("[bladeRF common] "),
_failures(0),
_num_buffers(NUM_BUFFERS),