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

This commit is contained in:
Bill Hoffman 2007-01-23 14:28:40 -05:00
parent 8638e31a88
commit 37d979e0fc
1 changed files with 1 additions and 1 deletions

View File

@ -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;