diff options
author | Michael Stürmer <michael.stuermer@schaeffler.com> | 2018-03-15 15:52:48 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-03-19 13:07:38 (GMT) |
commit | 8e20ad1a5e998341cc579bcf501a6f9d68dba860 (patch) | |
tree | 1e89ce54f1964ff5bae76884a1d164a5aa426560 /Source/cmComputeLinkInformation.cxx | |
parent | 07f9f41f503985dbd1fb0a657beadcfee95347e0 (diff) | |
download | CMake-8e20ad1a5e998341cc579bcf501a6f9d68dba860.zip CMake-8e20ad1a5e998341cc579bcf501a6f9d68dba860.tar.gz CMake-8e20ad1a5e998341cc579bcf501a6f9d68dba860.tar.bz2 |
cmComputeLinkInformation: make GetItems() const
Diffstat (limited to 'Source/cmComputeLinkInformation.cxx')
-rw-r--r-- | Source/cmComputeLinkInformation.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmComputeLinkInformation.cxx b/Source/cmComputeLinkInformation.cxx index e00450f..b82fc43 100644 --- a/Source/cmComputeLinkInformation.cxx +++ b/Source/cmComputeLinkInformation.cxx @@ -406,7 +406,7 @@ cmComputeLinkInformation::~cmComputeLinkInformation() } cmComputeLinkInformation::ItemVector const& -cmComputeLinkInformation::GetItems() +cmComputeLinkInformation::GetItems() const { return this->Items; } |