diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2012-02-05 01:48:01 (GMT) |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2012-02-05 01:48:01 (GMT) |
commit | bfe56f6802fc7db7f8e824aab8881be6cf23ccef (patch) | |
tree | 2cba739f1ef62f289ab3084d5e56cbfb2ca5ab73 /Source/cmGlobalNinjaGenerator.cxx | |
parent | 69984906ef41ed9549d4acd75590c67030281df9 (diff) | |
download | CMake-bfe56f6802fc7db7f8e824aab8881be6cf23ccef.zip CMake-bfe56f6802fc7db7f8e824aab8881be6cf23ccef.tar.gz CMake-bfe56f6802fc7db7f8e824aab8881be6cf23ccef.tar.bz2 |
Ninja: Remove some default arguments
Diffstat (limited to 'Source/cmGlobalNinjaGenerator.cxx')
-rw-r--r-- | Source/cmGlobalNinjaGenerator.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Source/cmGlobalNinjaGenerator.cxx b/Source/cmGlobalNinjaGenerator.cxx index 24900c5..8b633bf 100644 --- a/Source/cmGlobalNinjaGenerator.cxx +++ b/Source/cmGlobalNinjaGenerator.cxx @@ -767,8 +767,5 @@ void cmGlobalNinjaGenerator::WriteTargetRebuildManifest(std::ostream& os) WritePhonyBuild(os, "A missing CMake input file is not an error.", implicitDeps, - cmNinjaDeps(), - cmNinjaDeps(), - cmNinjaDeps(), - cmNinjaVars()); + cmNinjaDeps()); } |