diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-12-09 03:34:17 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-12-09 03:34:17 (GMT) |
commit | 39714fb179c5164ef96b251b82d08e930d6bdc50 (patch) | |
tree | a42cca2d5df2698992cfcad6bab9fa36d7cdde81 /Source/cmGlobalGenerator.cxx | |
parent | 9eed6b91cff9995e48b32285cc25269bd67e1280 (diff) | |
download | CMake-39714fb179c5164ef96b251b82d08e930d6bdc50.zip CMake-39714fb179c5164ef96b251b82d08e930d6bdc50.tar.gz CMake-39714fb179c5164ef96b251b82d08e930d6bdc50.tar.bz2 |
Rename variable to remove warning
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index 36190d9..3edb0d1 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -196,8 +196,8 @@ void cmGlobalGenerator::EnableLanguage(const char* lang, = mf->GetDefinition("CMAKE_MINIMUM_REQUIRED_VERSION"); if (!versionValue || atof(versionValue) <= 1.4) { - std::string fpath = root + "/Modules/CMakeBackwardCompatibilityCXX.cmake"; - mf->ReadListFile(0,fpath.c_str()); + std::string nfpath = root + "/Modules/CMakeBackwardCompatibilityCXX.cmake"; + mf->ReadListFile(0,nfpath.c_str()); } } } |