From 99c2730bc9db270560671f2d7d173768465ed51f Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Mon, 31 Oct 2016 14:30:52 -0700 Subject: Remove all boost:: namespace prefix for uint32_t, int32_t etc. (fixed-width types) - Also removes all references to boost/cstdint.hpp and replaces it with stdint.h (The 'correct' replacement would be , but not all of our compilers support that). --- host/lib/usrp/gpsd_iface.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'host/lib/usrp/gpsd_iface.hpp') diff --git a/host/lib/usrp/gpsd_iface.hpp b/host/lib/usrp/gpsd_iface.hpp index 7d934ae5c..ad8ebb92a 100644 --- a/host/lib/usrp/gpsd_iface.hpp +++ b/host/lib/usrp/gpsd_iface.hpp @@ -18,7 +18,7 @@ #ifndef INCLUDED_GPSD_IFACE_HPP #define INCLUDED_GPSD_IFACE_HPP -#include +#include #include #include @@ -28,7 +28,7 @@ namespace uhd { namespace usrp { class gpsd_iface : public virtual uhd::gps_ctrl { public: typedef boost::shared_ptr sptr; - static sptr make(const std::string &addr, boost::uint16_t port); + static sptr make(const std::string &addr, uint16_t port); }; }}; -- cgit v1.2.3