diff options
author | Josh Blum <josh@joshknows.com> | 2010-08-11 11:17:11 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-08-11 11:17:11 -0700 |
commit | e581e0af0ab0387b03e20c5eadec157bcbb777ca (patch) | |
tree | 6466dccc75fbf8addc9ff4db5b837f793c0fb0b2 /host/include | |
parent | 349d99c988b2eeb3d13d6229cbd4b80bc9f8153a (diff) | |
download | uhd-e581e0af0ab0387b03e20c5eadec157bcbb777ca.tar.gz uhd-e581e0af0ab0387b03e20c5eadec157bcbb777ca.tar.bz2 uhd-e581e0af0ab0387b03e20c5eadec157bcbb777ca.zip |
usrp: needed default constructor for MSVC, fixed gain group float warnings
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/usrp/subdev_spec.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/host/include/uhd/usrp/subdev_spec.hpp b/host/include/uhd/usrp/subdev_spec.hpp index 4d8f03b77..56aa0df20 100644 --- a/host/include/uhd/usrp/subdev_spec.hpp +++ b/host/include/uhd/usrp/subdev_spec.hpp @@ -40,7 +40,8 @@ namespace uhd{ namespace usrp{ * \param sd_name the name of a subdevice on that daughterboard */ subdev_spec_pair_t( - const std::string &db_name, const std::string &sd_name + const std::string &db_name = "", + const std::string &sd_name = "" ); }; |