diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-04-03 00:04:31 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-04-03 23:25:19 +0200 |
| commit | d311043bf3c1e3e7f41b314f7ab7c91ed7e5aa7f (patch) | |
| tree | ab41f58144bda078f96ce23f6328bd36cbd18dc6 /src/lib/check_content_change_job.cc | |
| parent | 8c39f950ec8f8b3cf4d258279ab499d7e71dafc8 (diff) | |
C++11 and whitespace cleanups.
Diffstat (limited to 'src/lib/check_content_change_job.cc')
| -rw-r--r-- | src/lib/check_content_change_job.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/lib/check_content_change_job.cc b/src/lib/check_content_change_job.cc index e755a3945..16ef8d864 100644 --- a/src/lib/check_content_change_job.cc +++ b/src/lib/check_content_change_job.cc @@ -18,20 +18,23 @@ */ + #include "check_content_change_job.h" -#include "job_manager.h" -#include "examine_content_job.h" #include "content.h" +#include "examine_content_job.h" #include "film.h" +#include "job_manager.h" #include <iostream> #include "i18n.h" + using std::cout; using std::make_shared; using std::shared_ptr; using std::string; + CheckContentChangeJob::CheckContentChangeJob (shared_ptr<const Film> film) : Job (film) { |
