diff options
Diffstat (limited to 'lib/usrp/dboard/manager.cpp')
-rw-r--r-- | lib/usrp/dboard/manager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/usrp/dboard/manager.cpp b/lib/usrp/dboard/manager.cpp index fcdde84db..12cfdd156 100644 --- a/lib/usrp/dboard/manager.cpp +++ b/lib/usrp/dboard/manager.cpp @@ -93,7 +93,7 @@ private: type_t _type; //forward the get calls to the rx or tx - void get(const wax::type &key, wax::type &val){ + void get(const wax::obj &key, wax::obj &val){ switch(_type){ case RX_TYPE: return _subdev->rx_get(key, val); case TX_TYPE: return _subdev->tx_get(key, val); @@ -101,7 +101,7 @@ private: } //forward the set calls to the rx or tx - void set(const wax::type &key, const wax::type &val){ + void set(const wax::obj &key, const wax::obj &val){ switch(_type){ case RX_TYPE: return _subdev->rx_set(key, val); case TX_TYPE: return _subdev->tx_set(key, val); |