diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-01-23 19:28:40 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-01-23 19:28:40 (GMT) |
commit | 37d979e0fcb085b1f4e29df0f2105aeaa77fb2c5 (patch) | |
tree | bfa1b736fe3905e0bf5c7561679f94f75178e5b4 | |
parent | 8638e31a88e9b1455fef1752c80a5c71306332ae (diff) | |
download | CMake-37d979e0fcb085b1f4e29df0f2105aeaa77fb2c5.zip CMake-37d979e0fcb085b1f4e29df0f2105aeaa77fb2c5.tar.gz CMake-37d979e0fcb085b1f4e29df0f2105aeaa77fb2c5.tar.bz2 |
ENH: this does not need to be safe as the value is checked
-rw-r--r-- | Source/cmLocalGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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; |