summaryrefslogtreecommitdiffstats
path: root/Source/cmGeneratorTarget.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-03-12 23:19:50 (GMT)
committerStephen Kelly <steveire@gmail.com>2014-03-13 14:27:23 (GMT)
commitdcfcd23ed53d3bfe8ef299b8a3a38c47c27fa6b6 (patch)
tree12125bc0a97c6e87081e01523d09c650ef023458 /Source/cmGeneratorTarget.cxx
parent04cf50ff62a022296832cef6b48fb532508eb853 (diff)
downloadCMake-dcfcd23ed53d3bfe8ef299b8a3a38c47c27fa6b6.zip
CMake-dcfcd23ed53d3bfe8ef299b8a3a38c47c27fa6b6.tar.gz
CMake-dcfcd23ed53d3bfe8ef299b8a3a38c47c27fa6b6.tar.bz2
cmGeneratorTarget: Make GetSourceDepends const.
Diffstat (limited to 'Source/cmGeneratorTarget.cxx')
-rw-r--r--Source/cmGeneratorTarget.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx
index 4d335cd..bde60b8 100644
--- a/Source/cmGeneratorTarget.cxx
+++ b/Source/cmGeneratorTarget.cxx
@@ -241,7 +241,7 @@ const char *cmGeneratorTarget::GetProperty(const std::string& prop) const
//----------------------------------------------------------------------------
std::vector<cmSourceFile*> const*
-cmGeneratorTarget::GetSourceDepends(cmSourceFile* sf) const
+cmGeneratorTarget::GetSourceDepends(cmSourceFile const* sf) const
{
SourceEntriesType::const_iterator i = this->SourceEntries.find(sf);
if(i != this->SourceEntries.end())