diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-06-09 21:16:12 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-06-10 23:12:13 +0200 |
| commit | 2f1986a814403d690aedcbe8b7057878ebae76b0 (patch) | |
| tree | 3c9205c192ff4192a2d11c666093a007c4e60c11 /src/tools | |
| parent | 9704833bdfc8c8f104203200be27f714fa677506 (diff) | |
C++11 tidying.
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/dcpomatic.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc index e9302c6a0..65574cc67 100644 --- a/src/tools/dcpomatic.cc +++ b/src/tools/dcpomatic.cc @@ -458,7 +458,7 @@ public: set_film (film); - JobManager::instance()->add(shared_ptr<Job>(new CheckContentChangeJob(film))); + JobManager::instance()->add(make_shared<CheckContentChangeJob>(film)); } catch (FileNotFoundError& e) { auto const dir = e.file().parent_path(); |
