mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-26 02:38:37 -06:00
COMP: remove some warnings
This commit is contained in:
@@ -1209,10 +1209,9 @@ void cmGlobalXCodeGenerator::AddDependAndLinkInformation(cmXCodeObject* target)
|
||||
}
|
||||
|
||||
// write utility dependencies.
|
||||
std::set<cmStdString>::const_iterator i, end;
|
||||
i = cmtarget->GetUtilities().begin();
|
||||
end = cmtarget->GetUtilities().end();
|
||||
for(;i!= end; ++i)
|
||||
for(std::set<cmStdString>::const_iterator i
|
||||
= cmtarget->GetUtilities().begin();
|
||||
i != cmtarget->GetUtilities().end(); ++i)
|
||||
{
|
||||
cmTarget* t = this->FindTarget(i->c_str());
|
||||
cmXCodeObject* dptarget = this->FindXCodeTarget(t);
|
||||
|
||||
Reference in New Issue
Block a user