diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-10-17 14:51:23 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-10-17 14:51:23 (GMT) |
commit | c3007233ec8fc164a1e5de539bebdeb11cae3d8c (patch) | |
tree | 7e6222c18c3848e5eaf322e3c5f8d9244768c577 /Source/cmGlobalUnixMakefileGenerator.cxx | |
parent | a465ee3c6bcca6da501cc1499f17ca192b908927 (diff) | |
download | CMake-c3007233ec8fc164a1e5de539bebdeb11cae3d8c.zip CMake-c3007233ec8fc164a1e5de539bebdeb11cae3d8c.tar.gz CMake-c3007233ec8fc164a1e5de539bebdeb11cae3d8c.tar.bz2 |
Rename variables to remove warnings
Diffstat (limited to 'Source/cmGlobalUnixMakefileGenerator.cxx')
-rw-r--r-- | Source/cmGlobalUnixMakefileGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator.cxx b/Source/cmGlobalUnixMakefileGenerator.cxx index ca5c94b..f59c31c 100644 --- a/Source/cmGlobalUnixMakefileGenerator.cxx +++ b/Source/cmGlobalUnixMakefileGenerator.cxx @@ -71,8 +71,8 @@ void cmGlobalUnixMakefileGenerator::EnableLanguage(const char* lang, = mf->GetDefinition("CMAKE_MINIMUM_REQUIRED_VERSION"); if (!versionValue || atof(versionValue) <= 1.4) { - std::string fpath = root + "/Modules/CMakeBackwardCompatibilityC.cmake"; - mf->ReadListFile(0,fpath.c_str()); + std::string ifpath = root + "/Modules/CMakeBackwardCompatibilityC.cmake"; + mf->ReadListFile(0,ifpath.c_str()); } } } |