diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-07-07 19:33:54 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-07-07 19:33:54 +0100 |
| commit | 5ad33b463f977a286f69fd1c87c0db8cc8ac9e56 (patch) | |
| tree | 6a9a4124990ae801412b3b474a06e551e4c9ace1 /test/stl_binary_reader_test.cc | |
| parent | 0d022c11fd502186caef368d9cd77e095f74026c (diff) | |
Missing iostream includes for Arch.
Diffstat (limited to 'test/stl_binary_reader_test.cc')
| -rw-r--r-- | test/stl_binary_reader_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/stl_binary_reader_test.cc b/test/stl_binary_reader_test.cc index 2c301ee..8645805 100644 --- a/test/stl_binary_reader_test.cc +++ b/test/stl_binary_reader_test.cc @@ -18,10 +18,11 @@ */ #include <boost/test/unit_test.hpp> -#include <fstream> #include "stl_binary_reader.h" #include "subtitle.h" #include "test.h" +#include <fstream> +#include <iostream> using std::list; using std::cout; @@ -38,4 +39,3 @@ BOOST_AUTO_TEST_CASE (stl_binary_reader_test) ifstream f (p.string().c_str ()); sub::STLBinaryReader r (f); } - |
