diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2017-04-21 22:25:01 (GMT) |
---|---|---|
committer | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2017-04-21 22:48:18 (GMT) |
commit | 7284b15f8c9bb20618e5286b41ff2f13245dfb9c (patch) | |
tree | 34f680a23ea5de68236d0c486579fef362933ef6 /Source/cmTestGenerator.h | |
parent | e99dd765b750e666975837143986237f2e33138a (diff) | |
download | CMake-7284b15f8c9bb20618e5286b41ff2f13245dfb9c.zip CMake-7284b15f8c9bb20618e5286b41ff2f13245dfb9c.tar.gz CMake-7284b15f8c9bb20618e5286b41ff2f13245dfb9c.tar.bz2 |
cmScriptGenerator: pass Indent by value
Diffstat (limited to 'Source/cmTestGenerator.h')
-rw-r--r-- | Source/cmTestGenerator.h | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/Source/cmTestGenerator.h b/Source/cmTestGenerator.h index 7214375..9a25e33 100644 --- a/Source/cmTestGenerator.h +++ b/Source/cmTestGenerator.h @@ -29,16 +29,13 @@ public: void Compute(cmLocalGenerator* lg); protected: - void GenerateScriptConfigs(std::ostream& os, - Indent const& indent) CM_OVERRIDE; - void GenerateScriptActions(std::ostream& os, - Indent const& indent) CM_OVERRIDE; + void GenerateScriptConfigs(std::ostream& os, Indent indent) CM_OVERRIDE; + void GenerateScriptActions(std::ostream& os, Indent indent) CM_OVERRIDE; void GenerateScriptForConfig(std::ostream& os, const std::string& config, - Indent const& indent) CM_OVERRIDE; - void GenerateScriptNoConfig(std::ostream& os, - Indent const& indent) CM_OVERRIDE; + Indent indent) CM_OVERRIDE; + void GenerateScriptNoConfig(std::ostream& os, Indent indent) CM_OVERRIDE; bool NeedsScriptNoConfig() const CM_OVERRIDE; - void GenerateOldStyle(std::ostream& os, Indent const& indent); + void GenerateOldStyle(std::ostream& os, Indent indent); cmLocalGenerator* LG; cmTest* Test; |