diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-03-13 11:28:32 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-03-13 14:27:23 (GMT) |
commit | 6132d979d9d7877f5b116a2a110245adbb89e1b7 (patch) | |
tree | 9115a5608d5dc3b62b278a7eecb639aaf68f11d8 /Source/cmGeneratorTarget.cxx | |
parent | bc51221164330a24e90cf896300ded637b86d740 (diff) | |
download | CMake-6132d979d9d7877f5b116a2a110245adbb89e1b7.zip CMake-6132d979d9d7877f5b116a2a110245adbb89e1b7.tar.gz CMake-6132d979d9d7877f5b116a2a110245adbb89e1b7.tar.bz2 |
cmGeneratorTarget: Constify the AddExplicitObjectName API.
The storage is already const.
Diffstat (limited to 'Source/cmGeneratorTarget.cxx')
-rw-r--r-- | Source/cmGeneratorTarget.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx index 1d8d2dd..4d335cd 100644 --- a/Source/cmGeneratorTarget.cxx +++ b/Source/cmGeneratorTarget.cxx @@ -328,7 +328,7 @@ void cmGeneratorTarget::AddObject(cmSourceFile const* sf, } //---------------------------------------------------------------------------- -void cmGeneratorTarget::AddExplicitObjectName(cmSourceFile* sf) +void cmGeneratorTarget::AddExplicitObjectName(cmSourceFile const* sf) { this->ExplicitObjectName.insert(sf); } |