From 37d979e0fcb085b1f4e29df0f2105aeaa77fb2c5 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Tue, 23 Jan 2007 14:28:40 -0500 Subject: ENH: this does not need to be safe as the value is checked --- Source/cmLocalGenerator.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index 9c30319..0333a5e 100644 --- a/Source/cmLocalGenerator.cxx +++ b/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; -- cgit v0.12