mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-07 06:40:16 -05:00
cmComputeLinkInformation: make GetItems() const
This commit is contained in:
committed by
Brad King
parent
07f9f41f50
commit
8e20ad1a5e
@@ -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