fix warning
This commit is contained in:
parent
94b11a6ee4
commit
d9d19a4d68
@ -325,14 +325,14 @@ void cmGlobalGenerator::Configure()
|
|||||||
if(notFoundMap.size())
|
if(notFoundMap.size())
|
||||||
{
|
{
|
||||||
std::string notFoundVars;
|
std::string notFoundVars;
|
||||||
for(std::set<std::string>::iterator i = notFoundMap.begin();
|
for(std::set<std::string>::iterator ii = notFoundMap.begin();
|
||||||
i != notFoundMap.end(); ++i)
|
ii != notFoundMap.end(); ++ii)
|
||||||
{
|
{
|
||||||
notFoundVars += *i;
|
notFoundVars += *ii;
|
||||||
if(manager)
|
if(manager)
|
||||||
{
|
{
|
||||||
cmCacheManager::CacheIterator it =
|
cmCacheManager::CacheIterator it =
|
||||||
manager->GetCacheIterator(i->c_str());
|
manager->GetCacheIterator(ii->c_str());
|
||||||
if(it.GetPropertyAsBool("ADVANCED"))
|
if(it.GetPropertyAsBool("ADVANCED"))
|
||||||
{
|
{
|
||||||
notFoundVars += " (ADVANCED)";
|
notFoundVars += " (ADVANCED)";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user