diff options
author | Michael Stürmer <michael.stuermer@schaeffler.com> | 2018-03-15 16:52:48 +0100 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-03-19 09:07:38 -0400 |
commit | 8e20ad1a5e998341cc579bcf501a6f9d68dba860 (patch) | |
tree | 1e89ce54f1964ff5bae76884a1d164a5aa426560 /Source/cmComputeLinkInformation.h | |
parent | 07f9f41f503985dbd1fb0a657beadcfee95347e0 (diff) | |
download | cmake-8e20ad1a5e998341cc579bcf501a6f9d68dba860.tar.gz |
cmComputeLinkInformation: make GetItems() const
Diffstat (limited to 'Source/cmComputeLinkInformation.h')
-rw-r--r-- | Source/cmComputeLinkInformation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmComputeLinkInformation.h b/Source/cmComputeLinkInformation.h index f8c62145e4..6c67fb409c 100644 --- a/Source/cmComputeLinkInformation.h +++ b/Source/cmComputeLinkInformation.h @@ -48,7 +48,7 @@ public: cmGeneratorTarget const* Target; }; typedef std::vector<Item> ItemVector; - ItemVector const& GetItems(); + ItemVector const& GetItems() const; std::vector<std::string> const& GetDirectories(); std::vector<std::string> const& GetDepends(); std::vector<std::string> const& GetFrameworkPaths(); |