diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-07 23:45:44 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-12 16:39:58 (GMT) |
commit | f7acd7421521b3a961480a37077c3814dc684d30 (patch) | |
tree | f3af242b707a5ad8fb98f09f39393eb28c86be6b /Source/cmGeneratorTarget.h | |
parent | 763f7b19fcf8a287a0ce20a955ec9c2f7b1a051f (diff) | |
download | CMake-f7acd7421521b3a961480a37077c3814dc684d30.zip CMake-f7acd7421521b3a961480a37077c3814dc684d30.tar.gz CMake-f7acd7421521b3a961480a37077c3814dc684d30.tar.bz2 |
cmGeneratorTarget: Port LinkImplClosure to cmGeneratorTarget.
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r-- | Source/cmGeneratorTarget.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index cd994c0..b3519de 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -477,7 +477,7 @@ private: cmGeneratorTarget(cmGeneratorTarget const&); void operator=(cmGeneratorTarget const&); - struct LinkImplClosure: public std::vector<cmTarget const*> + struct LinkImplClosure: public std::vector<cmGeneratorTarget const*> { LinkImplClosure(): Done(false) {} bool Done; @@ -555,8 +555,8 @@ private: std::string& out) const; public: - std::vector<cmTarget const*> const& - GetLinkImplementationClosure(const std::string& config) const; + const std::vector<const cmGeneratorTarget*>& + GetLinkImplementationClosure(const std::string& config) const; mutable std::map<std::string, std::string> MaxLanguageStandards; std::map<std::string, std::string> const& |