diff options
author | Brad King <brad.king@kitware.com> | 2013-12-23 15:18:51 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-12-23 15:18:51 (GMT) |
commit | 1e8d4b5f46c6d77090d3b06d7fc330e26589b319 (patch) | |
tree | 158dfae1c26f3ae0e773c20ce0894e51d5394a41 /Source/cmGlobalGenerator.cxx | |
parent | a61bec581ecbe2daecd1d8742e460c9535e1fe46 (diff) | |
parent | ae6fc555a7e8929f6d96545bd1137c8bd378566d (diff) | |
download | CMake-1e8d4b5f46c6d77090d3b06d7fc330e26589b319.zip CMake-1e8d4b5f46c6d77090d3b06d7fc330e26589b319.tar.gz CMake-1e8d4b5f46c6d77090d3b06d7fc330e26589b319.tar.bz2 |
Merge topic 'constify'
ae6fc55 cmGlobalGenerator: Fix value type pushed into autogens vector
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index f160d28..227a948 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -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)); } } } |