diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-07 22:54:18 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-12 16:39:58 (GMT) |
commit | d6b394edcb58752cfa3d2a34a81f558676781304 (patch) | |
tree | 0c728f3c349b5866fd5917678eed9c3a9ac25d57 /Source/cmComputeLinkDepends.h | |
parent | 7c8236efa710372b6e54ba12934b075f718e0e15 (diff) | |
download | CMake-d6b394edcb58752cfa3d2a34a81f558676781304.zip CMake-d6b394edcb58752cfa3d2a34a81f558676781304.tar.gz CMake-d6b394edcb58752cfa3d2a34a81f558676781304.tar.bz2 |
cmComputeLinkDepends: Port result API to cmGeneratorTarget.
Diffstat (limited to 'Source/cmComputeLinkDepends.h')
-rw-r--r-- | Source/cmComputeLinkDepends.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmComputeLinkDepends.h b/Source/cmComputeLinkDepends.h index fc484de..cd067f5 100644 --- a/Source/cmComputeLinkDepends.h +++ b/Source/cmComputeLinkDepends.h @@ -52,7 +52,7 @@ public: EntryVector const& Compute(); void SetOldLinkDirMode(bool b); - std::set<cmTarget const*> const& GetOldWrongConfigItems() const + std::set<cmGeneratorTarget const*> const& GetOldWrongConfigItems() const { return this->OldWrongConfigItems; } private: @@ -150,7 +150,7 @@ private: // Record of the original link line. std::vector<int> OriginalEntries; - std::set<cmTarget const*> OldWrongConfigItems; + std::set<cmGeneratorTarget const*> OldWrongConfigItems; void CheckWrongConfigItem(cmLinkItem const& item); int ComponentOrderId; |