Missing virtual destructor.
authorCarl Hetherington <cth@carlh.net>
Sun, 19 Jul 2015 21:51:21 +0000 (22:51 +0100)
committerCarl Hetherington <cth@carlh.net>
Sun, 19 Jul 2015 21:51:21 +0000 (22:51 +0100)
src/lib/uploader.h

index d504ed0f8bd98d4923b987edf9a1c15313c4d2f7..dacee69702199b9e8dad2b5ca38668c52c0e678d 100644 (file)
@@ -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: