diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-12-10 14:30:41 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-12-11 14:30:11 (GMT) |
commit | 9edee62f280de840096651a817b765a38ec6d090 (patch) | |
tree | 98c18e58a0555d98d7c071fa7558d1af513ec269 /Source/cmExportFileGenerator.cxx | |
parent | ef25ba8d066ed06d59f975ecfac55569ee369402 (diff) | |
download | CMake-9edee62f280de840096651a817b765a38ec6d090.zip CMake-9edee62f280de840096651a817b765a38ec6d090.tar.gz CMake-9edee62f280de840096651a817b765a38ec6d090.tar.bz2 |
Constify handling of link targets.
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 f8b4e28..2a87e4f 100644 --- a/Source/cmExportFileGenerator.cxx +++ b/Source/cmExportFileGenerator.cxx @@ -402,7 +402,7 @@ void cmExportFileGenerator::PopulateInterfaceProperty(const char *propName, //---------------------------------------------------------------------------- -void getPropertyContents(cmTarget *tgt, const char *prop, +void getPropertyContents(cmTarget const* tgt, const char *prop, std::set<std::string> &ifaceProperties) { const char *p = tgt->GetProperty(prop); |