From 25d8d6f611851d587e98607cba79a5bb74db2cb1 Mon Sep 17 00:00:00 2001 From: Lane Kolbly Date: Tue, 21 Dec 2021 13:13:53 -0600 Subject: host: Add char* overload for device_addr_t This allows constructing a multi_usrp using a string constant: ``` auto usrp = uhd::usrp::multi_usrp::make("type=x4xx"); ``` --- host/lib/include/uhdlib/usrp/constrained_device_args.hpp | 6 ------ 1 file changed, 6 deletions(-) (limited to 'host/lib/include') diff --git a/host/lib/include/uhdlib/usrp/constrained_device_args.hpp b/host/lib/include/uhdlib/usrp/constrained_device_args.hpp index e0c2c9b90..d3b52ea01 100644 --- a/host/lib/include/uhdlib/usrp/constrained_device_args.hpp +++ b/host/lib/include/uhdlib/usrp/constrained_device_args.hpp @@ -244,12 +244,6 @@ public: // Methods constrained_device_args_t() {} virtual ~constrained_device_args_t() {} - void parse(const std::string& str_args) - { - device_addr_t dev_args(str_args); - _parse(dev_args); - } - void parse(const device_addr_t& dev_args) { _parse(dev_args); -- cgit v1.2.3