mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-22 06:59:01 -06:00
Merge topic 'make_GetItems_const'
8e20ad1a5e cmComputeLinkInformation: make GetItems() const
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !1863
This commit is contained in:
@@ -406,7 +406,7 @@ cmComputeLinkInformation::~cmComputeLinkInformation()
|
||||
}
|
||||
|
||||
cmComputeLinkInformation::ItemVector const&
|
||||
cmComputeLinkInformation::GetItems()
|
||||
cmComputeLinkInformation::GetItems() const
|
||||
{
|
||||
return this->Items;
|
||||
}
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user