mirror of
https://github.com/reactos/CMake.git
synced 2024-11-25 04:29:52 +00:00
Revert "cmGlobalGenerator: Fix value type pushed into autogens vector"
This reverts commit ae6fc555a7
.
Use the more-natural make_pair algorithm. The compiler motivating
the need for this is not supported as a host anymore.
This commit is contained in:
parent
0550b9e330
commit
6010f93632
@ -1387,7 +1387,7 @@ void cmGlobalGenerator::CreateQtAutoGeneratorsTargets(AutogensType &autogens)
|
||||
cmQtAutoGenerators autogen;
|
||||
if(autogen.InitializeAutogenTarget(&target))
|
||||
{
|
||||
autogens.push_back(AutogensType::value_type(autogen, &target));
|
||||
autogens.push_back(std::make_pair(autogen, &target));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user