diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-05-11 02:46:22 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-05-12 22:10:41 +0200 |
| commit | d42d9740f542ac93f21b21ec9fab8558f9e87037 (patch) | |
| tree | 46f150e361d0aedfe7aa3e93dfa48f0fa1e53733 | |
| parent | 5f7a045d3898332149ecbe3dba7b14ba030da463 (diff) | |
Cleanup: include/using sorting.
| -rw-r--r-- | test/torture_test.cc | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/test/torture_test.cc b/test/torture_test.cc index 851a26a31..bc03c93d8 100644 --- a/test/torture_test.cc +++ b/test/torture_test.cc @@ -26,28 +26,31 @@ #include "lib/audio_content.h" -#include "lib/film.h" +#include "lib/content_factory.h" +#include "lib/dcp_content.h" #include "lib/dcp_content_type.h" +#include "lib/film.h" #include "lib/ratio.h" -#include "lib/content_factory.h" +#include "lib/text_content.h" #include "lib/video_content.h" #include "test.h" #include <dcp/cpl.h> -#include <dcp/reel.h> -#include <dcp/reel_sound_asset.h> -#include <dcp/reel_picture_asset.h> -#include <dcp/sound_asset.h> #include <dcp/mono_picture_asset.h> #include <dcp/mono_picture_frame.h> #include <dcp/openjpeg_image.h> +#include <dcp/reel.h> +#include <dcp/reel_picture_asset.h> +#include <dcp/reel_sound_asset.h> +#include <dcp/sound_asset.h> #include <boost/test/unit_test.hpp> #include <iostream> -using std::list; using std::cout; -using std::shared_ptr; using std::dynamic_pointer_cast; +using std::list; +using std::make_shared; +using std::shared_ptr; using namespace dcpomatic; |
