Fix shadowed variable warning on dashboard results

This commit is contained in:
David Cole 2012-02-23 08:11:09 -05:00
parent f66e735de3
commit d662dff769
1 changed files with 1 additions and 1 deletions

View File

@ -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;