From: Mikko Rasa Date: Mon, 16 Jul 2012 20:58:29 +0000 (+0300) Subject: Target::prepare shouldn't be virtual X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=5881b8499dc159564d2f69c3b037e16b4d1af4db;p=builder.git Target::prepare shouldn't be virtual --- diff --git a/source/target.h b/source/target.h index a649e92..62b6721 100644 --- a/source/target.h +++ b/source/target.h @@ -113,7 +113,7 @@ protected: public: /** Prepares the target by finding dependencies, recursively preparing them and then checking whether rebuilding is needed. */ - virtual void prepare(); + void prepare(); /** Invokes the associated Tool to build the target and returns the resulting Task. The task must be started by the caller. */