diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-05-10 19:56:00 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-05-10 19:56:00 (GMT) |
commit | 71b993560b2e65dc648521fc19b02b5e80e50553 (patch) | |
tree | 186eee70bc91d63bd48a4895ca3a31fe84227914 /Source/cmGetDirectoryPropertyCommand.cxx | |
parent | 2af47105250a8a502eb5a3cbe18e1d77d11ec590 (diff) | |
download | CMake-71b993560b2e65dc648521fc19b02b5e80e50553.zip CMake-71b993560b2e65dc648521fc19b02b5e80e50553.tar.gz CMake-71b993560b2e65dc648521fc19b02b5e80e50553.tar.bz2 |
STYLE: fix line length
Diffstat (limited to 'Source/cmGetDirectoryPropertyCommand.cxx')
-rw-r--r-- | Source/cmGetDirectoryPropertyCommand.cxx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Source/cmGetDirectoryPropertyCommand.cxx b/Source/cmGetDirectoryPropertyCommand.cxx index 79a18ad..8d08c6b 100644 --- a/Source/cmGetDirectoryPropertyCommand.cxx +++ b/Source/cmGetDirectoryPropertyCommand.cxx @@ -60,7 +60,9 @@ bool cmGetDirectoryPropertyCommand::InitialPass( if (!lg) { this->SetError - ("DIRECTORY argument provided but requested directory not found. This could be because the directory argument was invalid or, it is valid but has not been processed yet."); + ("DIRECTORY argument provided but requested directory not found. " + "This could be because the directory argument was invalid or, " + "it is valid but has not been processed yet."); return false; } dir = lg->GetMakefile(); @@ -140,8 +142,8 @@ bool cmGetDirectoryPropertyCommand::InitialPass( ++i; if (i == args.end()) { - this->SetError - ("A request for a variable definition was made without providing the name of the variable to get."); + this->SetError("A request for a variable definition was made without " + "providing the name of the variable to get."); return false; } output = dir->GetSafeDefinition(i->c_str()); |