diff options
author | Brad King <brad.king@kitware.com> | 2014-06-16 14:09:46 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-06-23 13:17:06 (GMT) |
commit | 47ab3ca64105cdfcc7b57ffe037aa93d8226b945 (patch) | |
tree | 6dd1053630a7c7da2b706cb9f53e696dd07e176b /Source/cmTarget.h | |
parent | 9f3ed029ce830f0395e102258758a4b3680e5d0f (diff) | |
download | CMake-47ab3ca64105cdfcc7b57ffe037aa93d8226b945.zip CMake-47ab3ca64105cdfcc7b57ffe037aa93d8226b945.tar.gz CMake-47ab3ca64105cdfcc7b57ffe037aa93d8226b945.tar.bz2 |
cmTarget: Constify GetLinkImplementationClosure results
Populate a vector of "cmTarget const*" instead of "cmTarget*".
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index fae1bbb..cb68559 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -273,7 +273,7 @@ public: void GetTransitivePropertyTargets(const std::string& config, cmTarget const* headTarget, std::vector<cmTarget const*> &libs) const; - std::vector<cmTarget*> const& + std::vector<cmTarget const*> const& GetLinkImplementationClosure(const std::string& config) const; /** The link implementation specifies the direct library |