]> git.tdb.fi Git - builder.git/commitdiff
Miscellaneous style and comment tweaks
authorMikko Rasa <tdb@tdb.fi>
Mon, 16 Jul 2012 19:24:58 +0000 (22:24 +0300)
committerMikko Rasa <tdb@tdb.fi>
Mon, 16 Jul 2012 23:30:03 +0000 (02:30 +0300)
source/builder.h
source/component.h
source/config.cpp
source/packagemanager.h
source/sourcepackage.h
source/virtualtarget.h

index 9f792f828c78a3d4b0c327aa1d13868fcf6d7aac..55af18a5a2e9b4db855bcefdb67cf84cb9386d89 100644 (file)
@@ -133,7 +133,7 @@ private:
        attempted. */
        bool prepare_build();
 
-       /** Supervises the build process, starting new actions when slots become
+       /** Supervises the build process, starting new tasks when slots become
        available. */
        int do_build();
 
index 561a25091381bb4eb5838d1aa0b34b4f9fb89793..292f140a20cd97f79e101dfabb0cbc6dcd820ebd 100644 (file)
@@ -54,6 +54,7 @@ protected:
 
 public:
        Component(SourcePackage &, Type, const std::string &);
+
        const SourcePackage &get_package() const { return pkg; }
        Type get_type() const { return type; }
        const std::string &get_name() const { return name; }
index 8cabb56fa767dd64f8c199f309cbe0c6fe5c905c..e4449cc80aaad3fe16c7b628f4708bdff5a80e30 100644 (file)
@@ -69,7 +69,6 @@ bool Config::set_option(const string &opt, const string &val)
 void Config::load()
 {
        FS::Path fn = package.get_source()/".config";
-
        FS::Stat stat = FS::stat(fn);
        if(stat)
        {
index 96c3dcacdb1809bc0ab4ae8040c9a40ccd5d8ac5..3484687e6191bf6a3c93bc72221f2ccac9b4c113 100644 (file)
@@ -31,6 +31,7 @@ public:
        PackageManager(Builder &);
        ~PackageManager();
 
+       /** Prevent creation of source packages. */
        void set_no_externals(bool);
 
        /** Adds a package to the manager.  Called from Package constructor. */
index d55d373528dc329fc88bf2be82e82d0b6ee59447..5b4ffd0474bc8a1e2f79c060e58193edb77cd20d 100644 (file)
@@ -65,6 +65,7 @@ private:
 
 public:
        SourcePackage(Builder &, const std::string &, const Msp::FS::Path &);
+
        const std::string &get_version() const { return version; }
        const std::string &get_description() const { return description; }
        const Msp::FS::Path &get_source() const { return source; }
@@ -78,8 +79,6 @@ public:
 
        DependencyCache &get_deps_cache() const { return deps_cache; }
 private:
-       /** Fills in build info based on configuration.  All required packages must be
-       configured when this is called. */
        virtual void create_build_info();
 
        virtual void create_targets();
index a7fd8f6cf94d2a7b5718bdc8c20b1e117b03335a..bd39e5fbaf1fcc664af9786e9476f00fc48184f5 100644 (file)
@@ -10,6 +10,7 @@ class VirtualTarget: public Target
 {
 public:
        VirtualTarget(Builder &, const std::string &);
+
        virtual const char *get_type() const { return "VirtualTarget"; }
 private:
        virtual void check_rebuild();