diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-07-19 22:51:21 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-07-19 22:51:21 +0100 |
| commit | f1ece8a988763d83a6a1e791698d1162a900315c (patch) | |
| tree | 0dc478f2e107a935870ace82ca220e2d17f68459 /src/lib | |
| parent | d91c2ca308ccaf83d5c4bfab220fb6968cd03a6f (diff) | |
Missing virtual destructor.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/uploader.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/uploader.h b/src/lib/uploader.h index d504ed0f8..dacee6970 100644 --- a/src/lib/uploader.h +++ b/src/lib/uploader.h @@ -30,6 +30,8 @@ class Uploader { public: Uploader (boost::function<void (std::string)> set_status, boost::function<void (float)> set_progress); + virtual ~Uploader () {} + void upload (boost::filesystem::path directory); protected: |
