commit | 8b367fb70f1a5d0711339eb09147f6c7667b4b67 | [log] [tgz] |
---|---|---|
author | Eric Newberry <enewberry@cs.arizona.edu> | Wed Jun 06 22:48:28 2018 -0700 |
committer | Eric Newberry <enewberry@cs.arizona.edu> | Wed Jun 06 22:53:32 2018 -0700 |
tree | 0e7a980bc266141df0b1def66f82ddd4a42ffe42 | |
parent | f79433860e31d80c4a8f536e4a3cc683ab3fdf36 [diff] [blame] |
install_helpers: add iostream include to tools fixes compilation error on Ubuntu 18.04 Change-Id: I5227413788b9a5e1e88c195a20177939fae39281
diff --git a/install_helpers/tools/test-nack-consumer.cpp b/install_helpers/tools/test-nack-consumer.cpp index fb6cb96..4af568e 100644 --- a/install_helpers/tools/test-nack-consumer.cpp +++ b/install_helpers/tools/test-nack-consumer.cpp
@@ -9,6 +9,8 @@ #include <boost/asio.hpp> #include <ndn-cxx/face.hpp> +#include <iostream> + namespace ndn { class TestNackConsumer : boost::noncopyable @@ -222,4 +224,4 @@ testNackConsumer.run(); return 0; -} \ No newline at end of file +}