diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-07 17:25:24 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-08 22:04:50 (GMT) |
commit | c72d276a5a07fe850a534f092ace98a3a56afc4f (patch) | |
tree | 59b4d1461e86583fcc3a935d91839a3f7e45d0d6 | |
parent | c99b6cefbe0da8758f00638a9e18234f562a266c (diff) | |
download | CMake-c72d276a5a07fe850a534f092ace98a3a56afc4f.zip CMake-c72d276a5a07fe850a534f092ace98a3a56afc4f.tar.gz CMake-c72d276a5a07fe850a534f092ace98a3a56afc4f.tar.bz2 |
C::B: Remove unused variables.
-rw-r--r-- | Source/cmExtraCodeBlocksGenerator.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/cmExtraCodeBlocksGenerator.cxx b/Source/cmExtraCodeBlocksGenerator.cxx index 7915a6e..609764c 100644 --- a/Source/cmExtraCodeBlocksGenerator.cxx +++ b/Source/cmExtraCodeBlocksGenerator.cxx @@ -693,8 +693,6 @@ std::string cmExtraCodeBlocksGenerator::GetCBCompilerId(const cmMakefile* mf) compilerIdVar = "CMAKE_C_COMPILER_ID"; } - std::string hostSystemName = mf->GetSafeDefinition("CMAKE_HOST_SYSTEM_NAME"); - std::string systemName = mf->GetSafeDefinition("CMAKE_SYSTEM_NAME"); std::string compilerId = mf->GetSafeDefinition(compilerIdVar); std::string compiler = "gcc"; // default to gcc if (compilerId == "MSVC") |