diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-01-25 13:26:57 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-02-05 19:44:25 (GMT) |
commit | 3f3db74413fc6b0afe4aa484c0ada2d5271ef0ba (patch) | |
tree | a9b04a326997dea07cdea400328130d2e9de1be7 /Source/cmMakefile.cxx | |
parent | bd990c803b40e1532cab6b29c75414ca6f30e782 (diff) | |
download | CMake-3f3db74413fc6b0afe4aa484c0ada2d5271ef0ba.zip CMake-3f3db74413fc6b0afe4aa484c0ada2d5271ef0ba.tar.gz CMake-3f3db74413fc6b0afe4aa484c0ada2d5271ef0ba.tar.bz2 |
cmMakefile: Remove ExpandSourceListArguments.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index ba914e1..e709b9f 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -3576,19 +3576,6 @@ void cmMakefile::EnableLanguage(std::vector<std::string> const & lang, optional); } -void cmMakefile::ExpandSourceListArguments( - std::vector<std::string> const& arguments, - std::vector<std::string>& newargs, unsigned int /* start */) const -{ - // now expand the args - unsigned int i; - for(i = 0; i < arguments.size(); ++i) - { - // List expansion will have been done already. - newargs.push_back(arguments[i]); - } -} - int cmMakefile::TryCompile(const std::string& srcdir, const std::string& bindir, const std::string& projectName, |