]> git.tdb.fi Git - builder.git/blobdiff - source/filetarget.h
Mark overridden virtual functions as such
[builder.git] / source / filetarget.h
index 64567fd255755a6f87fde6d3915ecf4318b695d3..5c11b5cfc4e7de82bb45cd1dabc06b882d5038e8 100644 (file)
@@ -16,6 +16,8 @@ protected:
        unsigned size;
        Msp::FS::Path install_location;
        std::string install_filename;
+       bool nested_build_sig;
+       bool arch_in_build_sig;
 
        FileTarget(Builder &, const Msp::FS::Path &);
        FileTarget(Builder &, const SourcePackage &, const Msp::FS::Path &);
@@ -37,16 +39,16 @@ public:
        void touch();
 
 protected:
-       virtual void check_rebuild();
+       void check_rebuild() override;
 
        virtual std::string create_build_signature() const;
 
-       virtual void build(Task &);
+       void build(Task &) override;
 
-       virtual void build_finished(bool);
+       void build_finished(bool) override;
 
 public:
-       virtual void clean();
+       void clean() override;
 };
 
 #endif