diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-07 22:49:38 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-12 16:39:58 (GMT) |
commit | c7645fca12870cef732f26730588cda3be072852 (patch) | |
tree | f7e28965906f7471794d9d717dc2d299b8cc8912 /Source/cmComputeLinkInformation.h | |
parent | ce8894aaf07871dbc58039e0ff0f22efaee7c014 (diff) | |
download | CMake-c7645fca12870cef732f26730588cda3be072852.zip CMake-c7645fca12870cef732f26730588cda3be072852.tar.gz CMake-c7645fca12870cef732f26730588cda3be072852.tar.bz2 |
cmComputeLinkInformation: Port data interface to cmGeneratorTarget.
Diffstat (limited to 'Source/cmComputeLinkInformation.h')
-rw-r--r-- | Source/cmComputeLinkInformation.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmComputeLinkInformation.h b/Source/cmComputeLinkInformation.h index 94c364d..2aac1bc 100644 --- a/Source/cmComputeLinkInformation.h +++ b/Source/cmComputeLinkInformation.h @@ -39,11 +39,11 @@ public: Item(): Value(), IsPath(true), Target(0) {} Item(Item const& item): Value(item.Value), IsPath(item.IsPath), Target(item.Target) {} - Item(std::string const& v, bool p, cmTarget const* target = 0): + Item(std::string const& v, bool p, cmGeneratorTarget const* target = 0): Value(v), IsPath(p), Target(target) {} std::string Value; bool IsPath; - cmTarget const* Target; + cmGeneratorTarget const* Target; }; typedef std::vector<Item> ItemVector; ItemVector const& GetItems(); |