diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-12-01 18:59:06 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-12-01 18:59:06 +0000 |
| commit | 5e8d74d83b479c3175e837c402d341fb558d3873 (patch) | |
| tree | ae3254735a199a42b9d1e16981bf0955f7ed0c1c /src | |
| parent | 896f8f79ad991f4f9190b9f561ccb6a10bc3f683 (diff) | |
Missing virtual destructor.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/job.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/job.h b/src/lib/job.h index b09964cf9..41cefb9be 100644 --- a/src/lib/job.h +++ b/src/lib/job.h @@ -39,6 +39,7 @@ class Job : public boost::enable_shared_from_this<Job> { public: Job (boost::shared_ptr<Film> s, boost::shared_ptr<Job> req); + virtual ~Job() {} /** @return user-readable name of this job */ virtual std::string name () const = 0; |
