cmMakefile: Initialize SuppressWatches member before use

In commit 86f3cd0f (cmMakefile: Require the localGenerator in the
constructor, 2015-04-27) we added use of GetDefinition to the
Initialize method.  Set SuppressWatches before calling this method
since GetDefinition checks it.
This commit is contained in:
Brad King 2015-05-04 10:16:34 -04:00
parent 46f6a5f458
commit f39f0c0aec
1 changed files with 4 additions and 3 deletions

View File

@ -83,6 +83,9 @@ cmMakefile::cmMakefile(cmLocalGenerator* localGenerator)
this->WarnUnused = false;
this->CheckSystemVars = false;
this->GeneratingBuildSystem = false;
this->SuppressWatches = false;
// Setup the default include file regular expression (match everything).
this->IncludeFileRegularExpression = "^.*$";
// Setup the default include complaint regular expression (match nothing).
@ -117,10 +120,8 @@ cmMakefile::cmMakefile(cmLocalGenerator* localGenerator)
this->LocalGenerator = localGenerator;
this->AddDefaultDefinitions();
this->Initialize();
this->GeneratingBuildSystem = false;
this->SuppressWatches = false;
this->Initialize();
}
//----------------------------------------------------------------------------