From: Moeller Date: Thu, 5 Aug 2010 01:53:01 +0000 (-0700) Subject: usrp2: fixes for gcc 4.5.0 compatibility X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=d2888160c3fca8da2152f8690dda7ae40d9a9163;p=debian%2Fgnuradio usrp2: fixes for gcc 4.5.0 compatibility --- diff --git a/usrp2/host/lib/usrp2.cc b/usrp2/host/lib/usrp2.cc index f0ee564b..0842482e 100644 --- a/usrp2/host/lib/usrp2.cc +++ b/usrp2/host/lib/usrp2.cc @@ -38,9 +38,9 @@ namespace usrp2 { struct usrp_table_entry { // inteface + normalized mac addr ("eth0:01:23:45:67:89:ab") std::string key; - boost::weak_ptr value; + boost::weak_ptr value; - usrp_table_entry(const std::string &_key, boost::weak_ptr _value) + usrp_table_entry(const std::string &_key, boost::weak_ptr _value) : key(_key), value(_value) {} }; @@ -70,7 +70,7 @@ namespace usrp2 { // We don't have the USRP2 we're looking for // create a new one and stick it in the table. - usrp2::sptr r(new usrp2::usrp2(ifc, pr, rx_bufsize)); + usrp2::sptr r(new usrp2(ifc, pr, rx_bufsize)); usrp_table_entry t(key, r); s_table.push_back(t);