diff options
Diffstat (limited to 'include/usrp_uhd/props.hpp')
-rw-r--r-- | include/usrp_uhd/props.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/usrp_uhd/props.hpp b/include/usrp_uhd/props.hpp index 6370bdd28..de3280969 100644 --- a/include/usrp_uhd/props.hpp +++ b/include/usrp_uhd/props.hpp @@ -42,14 +42,14 @@ namespace usrp_uhd{ //typedef for handling named properties typedef std::vector<std::string> prop_names_t; - typedef boost::tuple<wax::type, std::string> named_prop_t; + typedef boost::tuple<wax::obj, std::string> named_prop_t; /*! * Utility function to separate a named property into its components. * \param key a reference to the prop object * \param name a reference to the name object */ - inline named_prop_t extract_named_prop(const wax::type &key, const std::string &name = ""){ + inline named_prop_t extract_named_prop(const wax::obj &key, const std::string &name = ""){ if (key.type() == typeid(named_prop_t)){ return wax::cast<named_prop_t>(key); } |