]> git.tdb.fi Git - builder.git/blobdiff - source/objectfile.cpp
Reorder class members
[builder.git] / source / objectfile.cpp
index 778f74642acc72ca476f2a70224db1e886f7bd2e..683c724306d1f56db62a9585b69aeaf78cadbff7 100644 (file)
@@ -1,7 +1,7 @@
 /* $Id$
 
 This file is part of builder
-Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
+Copyright © 2006-200 Mikko Rasa, Mikkosoft Productions
 Distributed under the LGPL
 */
 
@@ -26,12 +26,6 @@ ObjectFile::ObjectFile(Builder &b, const Component &c, SourceFile &src):
        add_depend(&src);
 }
 
-/**
-Processes as many new dependences as possible.  Some may be left unprocessed
-if their own dependencies are not ready, requiring another call to this
-function.  Use the get_deps_ready() function to determine whether this is the
-case.
-*/
 void ObjectFile::find_depends()
 {
        for(TargetList::iterator i=new_deps.begin(); i!=new_deps.end();)
@@ -50,9 +44,6 @@ void ObjectFile::find_depends()
 }
 
 
-/**
-Recursively looks for header targets and adds them as dependencies.
-*/
 void ObjectFile::find_depends(Target *tgt)
 {
        const string &tname=tgt->get_name();
@@ -79,9 +70,6 @@ void ObjectFile::find_depends(Target *tgt)
        }
 }
 
-/**
-Adds a target to the dependency list as well as the new dependencies list.
-*/
 void ObjectFile::add_depend(Target *tgt)
 {
        Target::add_depend(tgt);