X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcsourcefile.h;h=55809b094c71e3babf04a77f308d6346aeb01d8a;hb=bde362811368647047f3ca13bdec596f092ecffe;hp=dce6e19c7a478bbbe3744811800de844a71f1e87;hpb=b45cfe5e437ca79bb3176618769628c58c0734d1;p=builder.git diff --git a/source/csourcefile.h b/source/csourcefile.h index dce6e19..55809b0 100644 --- a/source/csourcefile.h +++ b/source/csourcefile.h @@ -19,12 +19,12 @@ public: CSourceFile(Builder &, const Msp::FS::Path &); CSourceFile(Builder &, const Component &, const Msp::FS::Path &); - virtual const char *get_type() const { return "CSourceFile"; } + const char *get_type() const override { return "CSourceFile"; } const IncludeList &get_includes() const { return includes; } protected: virtual void parse_includes(Msp::IO::Base &); - virtual void find_dependencies(); - virtual void modified(); + void find_dependencies() override; + void modified() override; }; #endif