reduced debugging output

git-svn-id: trunk@15660 -
This commit is contained in:
mattias 2008-07-02 19:33:47 +00:00
parent bfc63ff71a
commit 77d6a73b1b

View File

@ -519,12 +519,12 @@ function ExtractCodeFromMakefile(const Source: string): string;
var
NewLength: integer;
begin
DebugLn(['ExtractCodeFromMakefile START ',Result]);
//DebugLn(['ExtractCodeFromMakefile START ',Result]);
Result:='';
Run(Result,NewLength);
SetLength(Result,NewLength);
Run(Result,NewLength);
DebugLn(['ExtractCodeFromMakefile END ',Result]);
//DebugLn(['ExtractCodeFromMakefile END ',Result]);
end;
function CConstantToInt64(const s: string; out i: int64): boolean;