diff options
Diffstat (limited to 'host/lib/include/uhdlib/usrp/common/ad936x_manager.hpp')
-rw-r--r-- | host/lib/include/uhdlib/usrp/common/ad936x_manager.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/host/lib/include/uhdlib/usrp/common/ad936x_manager.hpp b/host/lib/include/uhdlib/usrp/common/ad936x_manager.hpp index 7934b1050..7abbe69ed 100644 --- a/host/lib/include/uhdlib/usrp/common/ad936x_manager.hpp +++ b/host/lib/include/uhdlib/usrp/common/ad936x_manager.hpp @@ -16,6 +16,7 @@ #include <boost/format.hpp> #include <boost/shared_ptr.hpp> #include <stdint.h> +#include <functional> namespace uhd { namespace usrp { @@ -71,8 +72,8 @@ public: * \throws a uhd::runtime_error if the loopback value didn't match. */ virtual void loopback_self_test( - boost::function<void(uint32_t)> poker_functor, - boost::function<uint64_t()> peeker_functor + std::function<void(uint32_t)> poker_functor, + std::function<uint64_t()> peeker_functor ) = 0; /*! Determine a tick rate that will work with a given sampling rate |