]> git.tdb.fi Git - builder.git/blobdiff - source/datacollection.h
Mark overridden virtual functions as such
[builder.git] / source / datacollection.h
index b86da0762a90350ee7cd594437c87b1e248f3e6d..aeb270f4f11b3a92c73e51102c781d3f70c58c71 100644 (file)
@@ -16,11 +16,11 @@ private:
        static Msp::FS::Path generate_target_path(const Component &, const Msp::FS::Path &);
 
 public:
-       virtual const char *get_type() const { return "DataCollection"; }
+       const char *get_type() const override { return "DataCollection"; }
        DataTransform &get_source() const { return source; }
 
 private:
-       virtual void find_dependencies();
+       void find_dependencies() override;
 };
 
 #endif