Initialize the warning variables earlier

This commit is contained in:
Ben Boeckel 2010-09-22 12:42:26 -04:00
parent cbb286c0b2
commit 535253f385
1 changed files with 4 additions and 2 deletions

View File

@ -56,6 +56,10 @@ cmMakefile::cmMakefile(): Internal(new Internals)
this->Internal->VarInitStack.push(globalKeys);
this->Internal->VarUsageStack.push(globalKeys);
// Initialize these first since AddDefaultDefinitions calls AddDefinition
this->WarnUnused = false;
this->CheckSystemVars = false;
// Setup the default include file regular expression (match everything).
this->IncludeFileRegularExpression = "^.*$";
// Setup the default include complaint regular expression (match nothing).
@ -92,8 +96,6 @@ cmMakefile::cmMakefile(): Internal(new Internals)
this->AddDefaultDefinitions();
this->Initialize();
this->PreOrder = false;
this->WarnUnused = false;
this->CheckSystemVars = false;
}
cmMakefile::cmMakefile(const cmMakefile& mf): Internal(new Internals)