diff options
author | Johnathan Corgan <jcorgan@corganenterprises.com> | 2010-04-28 17:32:44 -0700 |
---|---|---|
committer | Johnathan Corgan <jcorgan@corganenterprises.com> | 2010-04-28 17:32:44 -0700 |
commit | 9038b3530d0ec746f401f3c443e2f862fff5a18e (patch) | |
tree | 4b56360a2040ea998a779ea304a7610e632f3e05 | |
parent | 8219bc01748d79ca1d995e65914b8c4033a89999 (diff) |
Really fix the missing include for boost::bind
-rw-r--r-- | usrp2/host/include/usrp2/usrp2.h | 1 | ||||
-rw-r--r-- | usrp2/host/lib/usrp2_impl.cc | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/usrp2/host/include/usrp2/usrp2.h b/usrp2/host/include/usrp2/usrp2.h index e29caa33db..7069507cfb 100644 --- a/usrp2/host/include/usrp2/usrp2.h +++ b/usrp2/host/include/usrp2/usrp2.h @@ -21,7 +21,6 @@ #include <boost/shared_ptr.hpp> #include <boost/utility.hpp> -#include <boost/bind.hpp> #include <vector> #include <complex> #include <usrp2/rx_sample_handler.h> diff --git a/usrp2/host/lib/usrp2_impl.cc b/usrp2/host/lib/usrp2_impl.cc index 882ad7414a..333e2d1e78 100644 --- a/usrp2/host/lib/usrp2_impl.cc +++ b/usrp2/host/lib/usrp2_impl.cc @@ -25,6 +25,7 @@ #include <usrp2/copiers.h> #include <gruel/inet.h> #include <gruel/realtime.h> +#include <boost/bind.hpp> #include <usrp2_types.h> #include "usrp2_impl.h" #include "eth_buffer.h" |