diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-02-16 22:31:58 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-02-16 22:31:58 +0000 |
| commit | 284d33037f878e6e3bc97238e0c18b0bbb92b990 (patch) | |
| tree | 3f04509fa16cafeb04e000f3e30e3f9565d59268 /src/lib/job.cc | |
| parent | 5d574b9285ba2cb57903174019e9e2d369cd607e (diff) | |
Remove now-unused job dependencies.
Diffstat (limited to 'src/lib/job.cc')
| -rw-r--r-- | src/lib/job.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/job.cc b/src/lib/job.cc index dd034bf0c..bde2c8cfd 100644 --- a/src/lib/job.cc +++ b/src/lib/job.cc @@ -33,11 +33,9 @@ using std::stringstream; using boost::shared_ptr; /** @param s Film that we are operating on. - * @param req Job that must be completed before this job is run. */ -Job::Job (shared_ptr<Film> f, shared_ptr<Job> req) +Job::Job (shared_ptr<Film> f) : _film (f) - , _required (req) , _state (NEW) , _start_time (0) , _progress_unknown (false) |
