diff options
Diffstat (limited to 'host/tests/sph_recv_test.cpp')
-rw-r--r-- | host/tests/sph_recv_test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/tests/sph_recv_test.cpp b/host/tests/sph_recv_test.cpp index 5685028d6..88718b956 100644 --- a/host/tests/sph_recv_test.cpp +++ b/host/tests/sph_recv_test.cpp @@ -7,10 +7,10 @@ #include "../common/mock_zero_copy.hpp" #include "../lib/transport/super_recv_packet_handler.hpp" -#include <boost/bind.hpp> #include <boost/shared_array.hpp> #include <boost/test/unit_test.hpp> #include <complex> +#include <functional> #include <list> #include <vector> @@ -263,7 +263,7 @@ BOOST_AUTO_TEST_CASE(test_sph_recv_one_channel_inline_message) // create an overflow handler overflow_handler_type overflow_handler; handler.set_overflow_handler( - 0, boost::bind(&overflow_handler_type::handle, &overflow_handler)); + 0, std::bind(&overflow_handler_type::handle, &overflow_handler)); // check the received packets size_t num_accum_samps = 0; |