X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fanalyzer.cpp;h=3481ec823309523fce9f78e171c3ff9df7374382;hb=242c55b17e6608b29a77ca17a5b677e202a3ca90;hp=a86a9a219125d3458a22d349bfead7ed2aedc5e5;hpb=77461a8c0e2b5686b04cf15f3a9333b215813992;p=builder.git diff --git a/source/analyzer.cpp b/source/analyzer.cpp index a86a9a2..3481ec8 100644 --- a/source/analyzer.cpp +++ b/source/analyzer.cpp @@ -1,7 +1,7 @@ /* $Id$ This file is part of builder -Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions +Copyright © 2006-2009 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ @@ -26,9 +26,6 @@ Analyzer::Analyzer(Builder &b): full_paths(false) { } -/** -Performs the analysis and prints out the resulting dependency tree. -*/ void Analyzer::analyze() { TableRow row; @@ -43,12 +40,6 @@ void Analyzer::analyze() print_table(); } -/** -Adds rows to the table for the given target and it' dependencies. - -@param tgt Target to be processed -@param depth Recursion level of the target (top level is 0) -*/ void Analyzer::build_depend_table(Target &tgt, unsigned depth) { if(mode!=REBUILD && mode!=ALLDEPS) @@ -61,7 +52,7 @@ void Analyzer::build_depend_table(Target &tgt, unsigned depth) } else if(mode==REBUILD && !tgt.get_rebuild()) /* All targets that depend on to-be-built targets will be rebuilt - themselves, so we cn stop here. */ + themselves, so we cn stop here. */ return; TableRow row; @@ -101,9 +92,6 @@ void Analyzer::build_depend_table(Target &tgt, unsigned depth) } } -/** -Prints out the table that resulted from the analysis. -*/ void Analyzer::print_table() const { vector col_width;