diff options
author | Brad King <brad.king@kitware.com> | 2007-10-16 14:20:59 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-10-16 14:20:59 (GMT) |
commit | 1de1f4bb834b37ee96b56fc72949b87139d4b318 (patch) | |
tree | 0a6bcb76fa920399d713f0630987c9d8250f1a21 /Source/cmInstallCommand.cxx | |
parent | fb4905aa621ee0fbafeffc8bad2d0cfbc963f253 (diff) | |
download | CMake-1de1f4bb834b37ee96b56fc72949b87139d4b318.zip CMake-1de1f4bb834b37ee96b56fc72949b87139d4b318.tar.gz CMake-1de1f4bb834b37ee96b56fc72949b87139d4b318.tar.bz2 |
STYLE: Fixed line-too-long.
Diffstat (limited to 'Source/cmInstallCommand.cxx')
-rw-r--r-- | Source/cmInstallCommand.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmInstallCommand.cxx b/Source/cmInstallCommand.cxx index 6a645da..78ce89e 100644 --- a/Source/cmInstallCommand.cxx +++ b/Source/cmInstallCommand.cxx @@ -160,14 +160,16 @@ bool cmInstallCommand::HandleScriptMode(std::vector<std::string> const& args) return false; } this->Makefile->AddInstallGenerator( - new cmInstallScriptGenerator(script.c_str(), false, component.c_str())); + new cmInstallScriptGenerator(script.c_str(), false, + component.c_str())); } else if(doing_code) { doing_code = false; std::string code = args[i]; this->Makefile->AddInstallGenerator( - new cmInstallScriptGenerator(code.c_str(), true, component.c_str())); + new cmInstallScriptGenerator(code.c_str(), true, + component.c_str())); } } |