commit | 21a4ea5ad7b4a3b7fa16472e81a4059b1275e10e | [log] [tgz] |
---|---|---|
author | Davide Pesavento <davidepesa@gmail.com> | Sun Dec 22 13:35:37 2019 -0500 |
committer | Davide Pesavento <davidepesa@gmail.com> | Sun Dec 22 17:17:15 2019 -0500 |
tree | 44189ee749cb48ea675109b8dd60ad45cd5065eb | |
parent | 813ae5831b6ba9b783b19dcdf0b75a106c915b81 [diff] [blame] |
tests: avoid deprecated boost headers Change-Id: I05aa8d5fd22843415db09478f7b53f1810b38db3
diff --git a/tests/unit/util/backports.t.cpp b/tests/unit/util/backports.t.cpp index 8f80263..b73465b 100644 --- a/tests/unit/util/backports.t.cpp +++ b/tests/unit/util/backports.t.cpp
@@ -25,7 +25,12 @@ #include "tests/boost-test.hpp" #include <numeric> + +#if BOOST_VERSION >= 105900 +#include <boost/test/tools/output_test_stream.hpp> +#else #include <boost/test/output_test_stream.hpp> +#endif namespace ndn { namespace tests {