From 115269a86c3116198f4de7c690fef21ec38767ac Mon Sep 17 00:00:00 2001 From: Robert Maynard Date: Thu, 13 Oct 2016 08:57:31 -0400 Subject: CUDA: Refactor cmLinkLineComputer to allow for better derived children. Derived children of cmLinkLineComputer need to be able to use member variables such as OutputConverter and the previously private methods. --- Source/cmLinkLineComputer.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/cmLinkLineComputer.h b/Source/cmLinkLineComputer.h index 97a5d1b..bb13717 100644 --- a/Source/cmLinkLineComputer.h +++ b/Source/cmLinkLineComputer.h @@ -33,10 +33,10 @@ public: std::string ComputeFrameworkPath(cmComputeLinkInformation& cli, std::string const& fwSearchFlag); - std::string ComputeLinkLibraries(cmComputeLinkInformation& cli, - std::string const& stdLibString); + virtual std::string ComputeLinkLibraries(cmComputeLinkInformation& cli, + std::string const& stdLibString); -private: +protected: std::string ComputeLinkLibs(cmComputeLinkInformation& cli); std::string ComputeRPath(cmComputeLinkInformation& cli); -- cgit v0.12