diff options
author | Peter Kümmel <syntheticpp@gmx.net> | 2012-07-10 08:37:31 (GMT) |
---|---|---|
committer | Peter Kümmel <syntheticpp@gmx.net> | 2012-07-10 08:53:24 (GMT) |
commit | 8c1e35c19505a1382e5c43a32cbdfe5379dc65d3 (patch) | |
tree | 0d19e070689e89719e2fccbc8c4dfd6eef677b60 /Source/cmGlobalNinjaGenerator.h | |
parent | 7f647cf5ebf0b45663cdabe4fd137b87753b857c (diff) | |
download | CMake-8c1e35c19505a1382e5c43a32cbdfe5379dc65d3.zip CMake-8c1e35c19505a1382e5c43a32cbdfe5379dc65d3.tar.gz CMake-8c1e35c19505a1382e5c43a32cbdfe5379dc65d3.tar.bz2 |
Ninja: remove some unused default arguments
Diffstat (limited to 'Source/cmGlobalNinjaGenerator.h')
-rw-r--r-- | Source/cmGlobalNinjaGenerator.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Source/cmGlobalNinjaGenerator.h b/Source/cmGlobalNinjaGenerator.h index 9431c57..ff4f85d 100644 --- a/Source/cmGlobalNinjaGenerator.h +++ b/Source/cmGlobalNinjaGenerator.h @@ -114,12 +114,12 @@ public: const std::string& name, const std::string& command, const std::string& description, - const std::string& comment = "", - const std::string& depfile = "", - const std::string& rspfile = "", - const std::string& rspcontent = "", - bool restat = false, - bool generator = false); + const std::string& comment, + const std::string& depfile, + const std::string& rspfile, + const std::string& rspcontent, + bool restat, + bool generator); /** * Write a variable named @a name to @a os with value @a value and an @@ -232,7 +232,7 @@ public: void AddRule(const std::string& name, const std::string& command, const std::string& description, - const std::string& comment = "", + const std::string& comment, const std::string& depfile = "", const std::string& rspfile = "", const std::string& rspcontent = "", |