summaryrefslogtreecommitdiff
path: root/Source/cmTestGenerator.h
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2017-04-22 00:25:01 +0200
committerDaniel Pfeifer <daniel@pfeifer-mail.de>2017-04-22 00:48:18 +0200
commit7284b15f8c9bb20618e5286b41ff2f13245dfb9c (patch)
tree34f680a23ea5de68236d0c486579fef362933ef6 /Source/cmTestGenerator.h
parente99dd765b750e666975837143986237f2e33138a (diff)
downloadcmake-7284b15f8c9bb20618e5286b41ff2f13245dfb9c.tar.gz
cmScriptGenerator: pass Indent by value
Diffstat (limited to 'Source/cmTestGenerator.h')
-rw-r--r--Source/cmTestGenerator.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/Source/cmTestGenerator.h b/Source/cmTestGenerator.h
index 7214375b4a..9a25e33192 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;