mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-19 11:18:40 +08:00
Fix shadowed variable warning on dashboard results
This commit is contained in:
@@ -2132,7 +2132,7 @@ void cmMakefile::ExpandVariables()
|
|||||||
l != this->Targets.end(); ++l)
|
l != this->Targets.end(); ++l)
|
||||||
{
|
{
|
||||||
cmTarget &t = l->second;
|
cmTarget &t = l->second;
|
||||||
const char *includeDirs = t.GetProperty("INCLUDE_DIRECTORIES");
|
includeDirs = t.GetProperty("INCLUDE_DIRECTORIES");
|
||||||
if (includeDirs)
|
if (includeDirs)
|
||||||
{
|
{
|
||||||
std::string dirs = includeDirs;
|
std::string dirs = includeDirs;
|
||||||
|
Reference in New Issue
Block a user