aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/usrp1/soft_time_ctrl.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib/usrp/usrp1/soft_time_ctrl.hpp')
-rw-r--r--host/lib/usrp/usrp1/soft_time_ctrl.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/usrp1/soft_time_ctrl.hpp b/host/lib/usrp/usrp1/soft_time_ctrl.hpp
index 9143b6af2..48915499a 100644
--- a/host/lib/usrp/usrp1/soft_time_ctrl.hpp
+++ b/host/lib/usrp/usrp1/soft_time_ctrl.hpp
@@ -14,7 +14,7 @@
#include <uhd/transport/bounded_buffer.hpp>
#include <uhd/utils/noncopyable.hpp>
#include <memory>
-#include <boost/function.hpp>
+#include <functional>
namespace uhd{ namespace usrp{
@@ -28,7 +28,7 @@ namespace uhd{ namespace usrp{
class soft_time_ctrl : uhd::noncopyable{
public:
typedef std::shared_ptr<soft_time_ctrl> sptr;
- typedef boost::function<void(bool)> cb_fcn_type;
+ typedef std::function<void(bool)> cb_fcn_type;
virtual ~soft_time_ctrl(void) = 0;