]> git.tdb.fi Git - builder.git/blobdiff - source/target.h
Style update: add spaces around assignment operators
[builder.git] / source / target.h
index 805b64a09a891ecbea2c2039c1a7c60379b672fd..80c6a17832edf804760f7d640c3e7993d125492d 100644 (file)
@@ -49,7 +49,7 @@ protected:
 public:
        virtual ~Target() { }
 
-       virtual const char *get_type() const=0;
+       virtual const char *get_type() const = 0;
        const std::string &get_name() const { return name; }
        const Package *get_package() const { return package; }
        const Msp::Time::TimeStamp &get_mtime() const { return mtime; }
@@ -72,7 +72,7 @@ public:
        Finds dependencies for the target.  When all dependencies have been found,
        the function should set deps_ready to true.
        */
-       virtual void find_depends() { deps_ready=true; }
+       virtual void find_depends() { deps_ready = true; }
 
        /**
        Prepares the target by recursively preparing dependencies, then checking