]> git.tdb.fi Git - builder.git/commitdiff
Comment changes
authorMikko Rasa <tdb@tdb.fi>
Sun, 15 Jul 2012 17:53:55 +0000 (20:53 +0300)
committerMikko Rasa <tdb@tdb.fi>
Sun, 15 Jul 2012 17:53:55 +0000 (20:53 +0300)
source/builder.h
source/objectfile.h

index 4b0bee33494636b2d5bb6392a001f458f728f4a8..cd6bf16d34fd950ea68ce0fc14a3506ce3e814b6 100644 (file)
@@ -25,7 +25,8 @@ class Package;
 class SourcePackage;
 
 /**
-The main application class.  Controls and owns everything.  Rules the world.
+The main application class.  Handles command line options and supervises the
+build process.
 */
 class Builder: public Msp::RegisteredApplication<Builder>
 {
index 2e9b6e1a4333074e71c18fe1502ab49661a68c13..af7cc227997315c8394dc46468f01894dd4f7b3f 100644 (file)
@@ -22,13 +22,9 @@ public:
        virtual const char *get_type() const { return "ObjectFile"; }
        SourceFile &get_source() const { return source; }
 
-       /** Processes as many new dependences as possible.  Some may be created on
-       the fly and can't be processed until their own dependencies are ready.  In
-       such cases this function needs to be called again. */
        virtual void find_depends();
 
 private:
-       /** Recursively looks for header targets and adds them as dependencies. */
        void find_depends(FileTarget *);
 };