diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-05-11 19:50:11 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-05-11 19:50:11 (GMT) |
commit | ba2b99bb9ff5e260f3129fdb4f87ae7e67a08301 (patch) | |
tree | 9813a8b1160fa7900b626b0092c01cdd1c306ebc /Source/cmIncludeCommand.cxx | |
parent | 80f71359c1157ddaa59291b95d2c05ceb577ffde (diff) | |
download | CMake-ba2b99bb9ff5e260f3129fdb4f87ae7e67a08301.zip CMake-ba2b99bb9ff5e260f3129fdb4f87ae7e67a08301.tar.gz CMake-ba2b99bb9ff5e260f3129fdb4f87ae7e67a08301.tar.bz2 |
STYLE: fix line length
Diffstat (limited to 'Source/cmIncludeCommand.cxx')
-rw-r--r-- | Source/cmIncludeCommand.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmIncludeCommand.cxx b/Source/cmIncludeCommand.cxx index d418698..5cab7d3 100644 --- a/Source/cmIncludeCommand.cxx +++ b/Source/cmIncludeCommand.cxx @@ -46,8 +46,9 @@ bool cmIncludeCommand::InitialPass(std::vector<std::string> const& args) fname = mfile.c_str(); } } - bool readit = this->Makefile->ReadListFile( this->Makefile->GetCurrentListFile(), - fname.c_str() ); + bool readit = + this->Makefile->ReadListFile( this->Makefile->GetCurrentListFile(), + fname.c_str() ); if(!optional && !readit && !cmSystemTools::GetFatalErrorOccured()) { std::string m = "Could not find include file: "; |