summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2013-12-23 15:18:51 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2013-12-23 15:18:51 (GMT)
commit1e8d4b5f46c6d77090d3b06d7fc330e26589b319 (patch)
tree158dfae1c26f3ae0e773c20ce0894e51d5394a41 /Source/cmGlobalGenerator.cxx
parenta61bec581ecbe2daecd1d8742e460c9535e1fe46 (diff)
parentae6fc555a7e8929f6d96545bd1137c8bd378566d (diff)
downloadCMake-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.cxx2
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));
}
}
}