Merge topic 'constify'
ae6fc55
cmGlobalGenerator: Fix value type pushed into autogens vector
This commit is contained in:
commit
1e8d4b5f46
|
@ -1278,7 +1278,7 @@ void cmGlobalGenerator::CreateQtAutoGeneratorsTargets(AutogensType &autogens)
|
|||
cmQtAutoGenerators autogen;
|
||||
if(autogen.InitializeAutogenTarget(&target))
|
||||
{
|
||||
autogens.push_back(std::make_pair(autogen, &target));
|
||||
autogens.push_back(AutogensType::value_type(autogen, &target));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue