diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-09-14 23:45:20 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-09-14 23:45:20 +0100 |
| commit | 17553e8613a83bbca51781e5c8d2308810e2aeeb (patch) | |
| tree | 368f5cd2c2a930580b88d597300e6434ea1a4375 | |
| parent | 1858190cff2f960f3d1f0a5cc02c69da86088f5b (diff) | |
More <iostream> includes for Arch.
| -rw-r--r-- | hacks/check_cout | 2 | ||||
| -rw-r--r-- | test/audio_decoder_test.cc | 1 | ||||
| -rw-r--r-- | test/audio_delay_test.cc | 1 | ||||
| -rw-r--r-- | test/burnt_subtitle_test.cc | 1 | ||||
| -rw-r--r-- | test/colour_conversion_test.cc | 1 | ||||
| -rw-r--r-- | test/dcp_subtitle_test.cc | 1 | ||||
| -rw-r--r-- | test/ffmpeg_decoder_sequential_test.cc | 1 | ||||
| -rw-r--r-- | test/file_log_test.cc | 1 | ||||
| -rw-r--r-- | test/image_test.cc | 1 | ||||
| -rw-r--r-- | test/isdcf_name_test.cc | 1 | ||||
| -rw-r--r-- | test/pixel_formats_test.cc | 1 | ||||
| -rw-r--r-- | test/play_test.cc | 1 | ||||
| -rw-r--r-- | test/recover_test.cc | 1 | ||||
| -rw-r--r-- | test/resampler_test.cc | 1 | ||||
| -rw-r--r-- | test/seek_zero_test.cc | 1 | ||||
| -rw-r--r-- | test/test.cc | 1 | ||||
| -rw-r--r-- | test/threed_test.cc | 1 | ||||
| -rw-r--r-- | test/video_decoder_fill_test.cc | 1 | ||||
| -rw-r--r-- | test/xml_subtitle_test.cc | 1 |
19 files changed, 19 insertions, 1 deletions
diff --git a/hacks/check_cout b/hacks/check_cout index 67053ca51..662bb638a 100644 --- a/hacks/check_cout +++ b/hacks/check_cout @@ -3,7 +3,7 @@ import os import shutil -for root, dirs, files in os.walk('src'): +for root, dirs, files in os.walk('.'): for name in files: if name.endswith('.cc'): include = False diff --git a/test/audio_decoder_test.cc b/test/audio_decoder_test.cc index e63e1a5b0..44d0d60f4 100644 --- a/test/audio_decoder_test.cc +++ b/test/audio_decoder_test.cc @@ -26,6 +26,7 @@ #include "test.h" #include "lib/audio_decoder.h" #include "lib/single_stream_audio_content.h" +#include <iostream> using std::string; using std::cout; diff --git a/test/audio_delay_test.cc b/test/audio_delay_test.cc index d36672a8a..a455110b8 100644 --- a/test/audio_delay_test.cc +++ b/test/audio_delay_test.cc @@ -34,6 +34,7 @@ #include "lib/ratio.h" #include "lib/film.h" #include "test.h" +#include <iostream> using std::string; using std::cout; diff --git a/test/burnt_subtitle_test.cc b/test/burnt_subtitle_test.cc index f861370b4..e2f7272be 100644 --- a/test/burnt_subtitle_test.cc +++ b/test/burnt_subtitle_test.cc @@ -28,6 +28,7 @@ #include "lib/ratio.h" #include "lib/dcp_content_type.h" #include "test.h" +#include <iostream> using std::cout; using boost::shared_ptr; diff --git a/test/colour_conversion_test.cc b/test/colour_conversion_test.cc index eb4b79ef8..2f01dd0fd 100644 --- a/test/colour_conversion_test.cc +++ b/test/colour_conversion_test.cc @@ -28,6 +28,7 @@ #include <libxml++/libxml++.h> #include <boost/test/unit_test.hpp> #include <boost/foreach.hpp> +#include <iostream> using std::cout; using boost::shared_ptr; diff --git a/test/dcp_subtitle_test.cc b/test/dcp_subtitle_test.cc index 1defe9d01..d7d55e9c0 100644 --- a/test/dcp_subtitle_test.cc +++ b/test/dcp_subtitle_test.cc @@ -29,6 +29,7 @@ #include "lib/dcp_decoder.h" #include "lib/dcp_content_type.h" #include "test.h" +#include <iostream> using std::cout; using std::list; diff --git a/test/ffmpeg_decoder_sequential_test.cc b/test/ffmpeg_decoder_sequential_test.cc index 22ab61624..767ea6727 100644 --- a/test/ffmpeg_decoder_sequential_test.cc +++ b/test/ffmpeg_decoder_sequential_test.cc @@ -29,6 +29,7 @@ #include "test.h" #include <boost/filesystem.hpp> #include <boost/test/unit_test.hpp> +#include <iostream> using std::cout; using std::cerr; diff --git a/test/file_log_test.cc b/test/file_log_test.cc index 29205e400..0d60753fd 100644 --- a/test/file_log_test.cc +++ b/test/file_log_test.cc @@ -19,6 +19,7 @@ #include "lib/file_log.h" #include <boost/test/unit_test.hpp> +#include <iostream> using std::cout; diff --git a/test/image_test.cc b/test/image_test.cc index 65a6c5ca7..b7f4f10fe 100644 --- a/test/image_test.cc +++ b/test/image_test.cc @@ -26,6 +26,7 @@ #include <boost/test/unit_test.hpp> #include <Magick++.h> #include "lib/image.h" +#include <iostream> using std::string; using std::list; diff --git a/test/isdcf_name_test.cc b/test/isdcf_name_test.cc index 38cd54569..de69d6240 100644 --- a/test/isdcf_name_test.cc +++ b/test/isdcf_name_test.cc @@ -24,6 +24,7 @@ #include "lib/image_content.h" #include "lib/sndfile_content.h" #include "test.h" +#include <iostream> using std::cout; using boost::shared_ptr; diff --git a/test/pixel_formats_test.cc b/test/pixel_formats_test.cc index a104e620b..da675f5a8 100644 --- a/test/pixel_formats_test.cc +++ b/test/pixel_formats_test.cc @@ -31,6 +31,7 @@ extern "C" { #include <libavcodec/avcodec.h> } #include "lib/image.h" +#include <iostream> using std::list; using std::cout; diff --git a/test/play_test.cc b/test/play_test.cc index 8ad2180b8..b950044a8 100644 --- a/test/play_test.cc +++ b/test/play_test.cc @@ -23,6 +23,7 @@ #include "lib/dcp_content_type.h" #include "lib/player_video_frame.h" #include "test.h" +#include <iostream> /* This test needs stuff in Player that is only included in debug mode */ #ifdef DCPOMATIC_DEBUG diff --git a/test/recover_test.cc b/test/recover_test.cc index 45791ae0d..3b31a6f8d 100644 --- a/test/recover_test.cc +++ b/test/recover_test.cc @@ -30,6 +30,7 @@ #include <dcp/mono_picture_asset.h> #include <dcp/stereo_picture_asset.h> #include <boost/test/unit_test.hpp> +#include <iostream> using std::cout; using std::string; diff --git a/test/resampler_test.cc b/test/resampler_test.cc index f536d6547..0c792879b 100644 --- a/test/resampler_test.cc +++ b/test/resampler_test.cc @@ -25,6 +25,7 @@ #include <boost/test/unit_test.hpp> #include "lib/audio_buffers.h" #include "lib/resampler.h" +#include <iostream> using std::pair; using std::cout; diff --git a/test/seek_zero_test.cc b/test/seek_zero_test.cc index ab2b48198..ad8ecb09f 100644 --- a/test/seek_zero_test.cc +++ b/test/seek_zero_test.cc @@ -31,6 +31,7 @@ #include "lib/ffmpeg_audio_stream.h" #include "lib/content_video.h" #include "test.h" +#include <iostream> using std::cout; using std::list; diff --git a/test/test.cc b/test/test.cc index be70165e6..acc3e4ca4 100644 --- a/test/test.cc +++ b/test/test.cc @@ -40,6 +40,7 @@ #include <boost/test/unit_test.hpp> #include <list> #include <vector> +#include <iostream> using std::string; using std::vector; diff --git a/test/threed_test.cc b/test/threed_test.cc index a4b1566ef..d71ad5b77 100644 --- a/test/threed_test.cc +++ b/test/threed_test.cc @@ -27,6 +27,7 @@ #include "lib/ratio.h" #include "lib/dcp_content_type.h" #include "lib/ffmpeg_content.h" +#include <iostream> using std::cout; using boost::shared_ptr; diff --git a/test/video_decoder_fill_test.cc b/test/video_decoder_fill_test.cc index 6d75e30da..67e84b713 100644 --- a/test/video_decoder_fill_test.cc +++ b/test/video_decoder_fill_test.cc @@ -21,6 +21,7 @@ #include "lib/image_decoder.h" #include "lib/image_content.h" #include "test.h" +#include <iostream> using std::list; using std::cout; diff --git a/test/xml_subtitle_test.cc b/test/xml_subtitle_test.cc index 536cb7d46..837c73c58 100644 --- a/test/xml_subtitle_test.cc +++ b/test/xml_subtitle_test.cc @@ -27,6 +27,7 @@ #include "lib/ratio.h" #include "lib/dcp_content_type.h" #include "test.h" +#include <iostream> using std::cout; using boost::shared_ptr; |
