summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-07-19 22:51:21 +0100
committerCarl Hetherington <cth@carlh.net>2015-07-19 22:51:21 +0100
commitf1ece8a988763d83a6a1e791698d1162a900315c (patch)
tree0dc478f2e107a935870ace82ca220e2d17f68459 /src/lib
parentd91c2ca308ccaf83d5c4bfab220fb6968cd03a6f (diff)
Missing virtual destructor.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/uploader.h2
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: