From a4e6bf8e36e6fa38bb40dc6df2345922de86bad4 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Sat, 5 Apr 2014 12:35:43 +0200 Subject: cmTarget: Make GetSourceFiles string overload private. Consumers should use the cmSourceFile overload, which is now always the case. --- Source/cmTarget.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/cmTarget.h b/Source/cmTarget.h index a8ac57f..da9d0a1 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -135,9 +135,6 @@ public: /** * Get the list of the source files used by this target */ - void GetSourceFiles(std::vector &files, - const std::string& config, - cmTarget const* head = 0) const; void GetSourceFiles(std::vector &files, const std::string& config, cmTarget const* head = 0) const; @@ -683,6 +680,9 @@ private: const std::string& config, bool contentOnly) const; + void GetSourceFiles(std::vector &files, + const std::string& config, + cmTarget const* head = 0) const; private: std::string Name; std::vector PreBuildCommands; -- cgit v0.12