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/cmInstallFilesGenerator.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/cmInstallFilesGenerator.h')
-rw-r--r-- | Source/cmInstallFilesGenerator.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/cmInstallFilesGenerator.h b/Source/cmInstallFilesGenerator.h index 578763b..62b57f9 100644 --- a/Source/cmInstallFilesGenerator.h +++ b/Source/cmInstallFilesGenerator.h @@ -34,12 +34,11 @@ public: std::string GetDestination(std::string const& config) const; protected: - void GenerateScriptActions(std::ostream& os, - Indent const& 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; + Indent indent) CM_OVERRIDE; void AddFilesInstallRule(std::ostream& os, std::string const& config, - Indent const& indent, + Indent indent, std::vector<std::string> const& files); cmLocalGenerator* LocalGenerator; |