mirror of
https://github.com/reactos/CMake.git
synced 2024-12-01 07:20:22 +00:00
BUG: fix build problem on gcc
This commit is contained in:
parent
61e056e2dc
commit
1c289b52f4
@ -894,8 +894,9 @@ void cmGlobalUnixMakefileGenerator3::WriteHelpRule
|
||||
}
|
||||
}
|
||||
}
|
||||
std::map<cmStdString,std::vector<cmTarget *> >& objs = lg->GetLocalObjectFiles();
|
||||
for(std::map<cmStdString,std::vector<cmTarget *> >::iterator o =
|
||||
std::map<cmStdString,std::vector<cmTarget *> > const& objs =
|
||||
lg->GetLocalObjectFiles();
|
||||
for(std::map<cmStdString,std::vector<cmTarget *> >::const_iterator o =
|
||||
objs.begin(); o != objs.end(); ++o)
|
||||
{
|
||||
path = "... ";
|
||||
|
Loading…
Reference in New Issue
Block a user