From d662dff7690ae4a3b22947f07de4fc952c33e568 Mon Sep 17 00:00:00 2001 From: David Cole Date: Thu, 23 Feb 2012 08:11:09 -0500 Subject: Fix shadowed variable warning on dashboard results --- Source/cmMakefile.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v0.12