]> git.tdb.fi Git - builder.git/blobdiff - source/objcsourcefile.h
Mark overridden virtual functions as such
[builder.git] / source / objcsourcefile.h
index 2069615b5c921ee821dcdfe9d08baa97e29ae0ed..fda3d293ed8079d452eb6452ffd7a029449d5c14 100644 (file)
@@ -12,10 +12,10 @@ public:
        ObjCSourceFile(Builder &, const Msp::FS::Path &);
        ObjCSourceFile(Builder &, const Component &, const Msp::FS::Path &);
 
-       virtual const char *get_type() const { return "ObjCSourceFile"; }
+       const char *get_type() const override { return "ObjCSourceFile"; }
 
 protected:
-       virtual void parse_includes(Msp::IO::Base &);
+       void parse_includes(Msp::IO::Base &) override;
 };
 
 #endif