commit | cf9e1c7789494cb7f74b5d38c0de744659996bc9 | [log] [tgz] |
---|---|---|
author | Davide Pesavento <davidepesa@gmail.com> | Sun Dec 22 17:56:07 2019 -0500 |
committer | Davide Pesavento <davidepesa@gmail.com> | Sun Dec 22 17:56:07 2019 -0500 |
tree | 6bcbbe5a9b0a500ea51d87bcb7ee1fb951fb9753 | |
parent | 5a897699cff77ef3739e14e52b9f923ccd54b2bc [diff] [blame] |
tests: avoid deprecated boost headers Change-Id: I1b79c9422109d2ce8832fd386b524bd9ffffa231
diff --git a/tests/tools/nfdc/status-fixture.hpp b/tests/tools/nfdc/status-fixture.hpp index f33f6bb..4517254 100644 --- a/tests/tools/nfdc/status-fixture.hpp +++ b/tests/tools/nfdc/status-fixture.hpp
@@ -31,6 +31,12 @@ #include <ndn-cxx/security/validator-null.hpp> +#if BOOST_VERSION >= 105900 +#include <boost/test/tools/output_test_stream.hpp> +#else +#include <boost/test/output_test_stream.hpp> +#endif + namespace nfd { namespace tools { namespace nfdc {