Browse Source

ENH: this does not need to be safe as the value is checked

pull/1/head
Bill Hoffman 19 years ago
parent
commit
37d979e0fc
  1. 2
      Source/cmLocalGenerator.cxx

2
Source/cmLocalGenerator.cxx

@ -1077,7 +1077,7 @@ const char* cmLocalGenerator::GetIncludeFlags(const char* lang)
const char* sysIncludeFlag = 0;
if(repeatFlag)
{
sysIncludeFlag = this->Makefile->GetSafeDefinition(sysFlagVar.c_str());
sysIncludeFlag = this->Makefile->GetDefinition(sysFlagVar.c_str());
}
bool flagUsed = false;

Loading…
Cancel
Save