diff options
author | Alex Neundorf <neundorf@kde.org> | 2012-09-25 17:19:27 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-09-28 21:00:52 (GMT) |
commit | 190f2c8253910a9e6870948df58a87950e7b4185 (patch) | |
tree | e38e387c287ae55aee25945f5349b911c85d81ef /Source/cmExportFileGenerator.cxx | |
parent | 8b5f448ba628dc474d3cd22d67db65551acc0846 (diff) | |
download | CMake-190f2c8253910a9e6870948df58a87950e7b4185.zip CMake-190f2c8253910a9e6870948df58a87950e7b4185.tar.gz CMake-190f2c8253910a9e6870948df58a87950e7b4185.tar.bz2 |
exports: fix build with MSVC6
it seems it doesn't like deleting const pointers
Alex
Diffstat (limited to 'Source/cmExportFileGenerator.cxx')
-rw-r--r-- | Source/cmExportFileGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmExportFileGenerator.cxx b/Source/cmExportFileGenerator.cxx index 36902a1..dc4fa31 100644 --- a/Source/cmExportFileGenerator.cxx +++ b/Source/cmExportFileGenerator.cxx @@ -286,7 +286,7 @@ std::vector<std::string> cmExportFileGenerator::FindNamespaces(cmMakefile* mf, ++expIt) { const cmExportSet* exportSet = expIt->second; - std::vector<cmTargetExport const*> const* targets = + std::vector<cmTargetExport*> const* targets = exportSet->GetTargetExports(); bool containsTarget = false; |