summaryrefslogtreecommitdiffstats
path: root/Source/cmExportSet.cxx
diff options
context:
space:
mode:
authorAlex Neundorf <neundorf@kde.org>2012-09-25 17:19:27 (GMT)
committerBrad King <brad.king@kitware.com>2012-09-28 21:00:52 (GMT)
commit190f2c8253910a9e6870948df58a87950e7b4185 (patch)
treee38e387c287ae55aee25945f5349b911c85d81ef /Source/cmExportSet.cxx
parent8b5f448ba628dc474d3cd22d67db65551acc0846 (diff)
downloadCMake-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/cmExportSet.cxx')
-rw-r--r--Source/cmExportSet.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmExportSet.cxx b/Source/cmExportSet.cxx
index 464ad68..33b0630 100644
--- a/Source/cmExportSet.cxx
+++ b/Source/cmExportSet.cxx
@@ -21,7 +21,7 @@ cmExportSet::~cmExportSet()
}
}
-void cmExportSet::AddTargetExport(cmTargetExport const* te)
+void cmExportSet::AddTargetExport(cmTargetExport* te)
{
this->TargetExports.push_back(te);
}