diff options
author | David Cole <david.cole@kitware.com> | 2012-02-23 13:11:09 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2012-02-23 13:11:09 (GMT) |
commit | d662dff7690ae4a3b22947f07de4fc952c33e568 (patch) | |
tree | 1038a8fd89c5dde4a1e86c189593f065499e91b5 /Source/cmMakefile.cxx | |
parent | f66e735de393c25408d9e955aa8f27c9611ac245 (diff) | |
download | CMake-d662dff7690ae4a3b22947f07de4fc952c33e568.zip CMake-d662dff7690ae4a3b22947f07de4fc952c33e568.tar.gz CMake-d662dff7690ae4a3b22947f07de4fc952c33e568.tar.bz2 |
Fix shadowed variable warning on dashboard results
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index d206d32..7cd82ba 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -2132,7 +2132,7 @@ void cmMakefile::ExpandVariables() l != this->Targets.end(); ++l) { cmTarget &t = l->second; - const char *includeDirs = t.GetProperty("INCLUDE_DIRECTORIES"); + includeDirs = t.GetProperty("INCLUDE_DIRECTORIES"); if (includeDirs) { std::string dirs = includeDirs; |