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/cmInstallExportGenerator.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/cmInstallExportGenerator.h')
-rw-r--r-- | Source/cmInstallExportGenerator.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Source/cmInstallExportGenerator.h b/Source/cmInstallExportGenerator.h index 3a46a72..047e6b3 100644 --- a/Source/cmInstallExportGenerator.h +++ b/Source/cmInstallExportGenerator.h @@ -44,10 +44,8 @@ public: protected: void GenerateScript(std::ostream& os) CM_OVERRIDE; - 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 GenerateImportFile(cmExportSet const* exportSet); void GenerateImportFile(const char* config, cmExportSet const* exportSet); void ComputeTempDir(); |