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/cmIncludeDirectoryCommand.cxx | |
parent | 80f71359c1157ddaa59291b95d2c05ceb577ffde (diff) | |
download | CMake-ba2b99bb9ff5e260f3129fdb4f87ae7e67a08301.zip CMake-ba2b99bb9ff5e260f3129fdb4f87ae7e67a08301.tar.gz CMake-ba2b99bb9ff5e260f3129fdb4f87ae7e67a08301.tar.bz2 |
STYLE: fix line length
Diffstat (limited to 'Source/cmIncludeDirectoryCommand.cxx')
-rw-r--r-- | Source/cmIncludeDirectoryCommand.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmIncludeDirectoryCommand.cxx b/Source/cmIncludeDirectoryCommand.cxx index eb07eb7..9dc2a25 100644 --- a/Source/cmIncludeDirectoryCommand.cxx +++ b/Source/cmIncludeDirectoryCommand.cxx @@ -17,7 +17,8 @@ #include "cmIncludeDirectoryCommand.h" // cmIncludeDirectoryCommand -bool cmIncludeDirectoryCommand::InitialPass(std::vector<std::string> const& args) +bool cmIncludeDirectoryCommand +::InitialPass(std::vector<std::string> const& args) { if(args.size() < 1 ) { @@ -43,7 +44,8 @@ bool cmIncludeDirectoryCommand::InitialPass(std::vector<std::string> const& args { if(i->size() == 0) { - cmSystemTools::Error("Empty Include Directory Passed into INCLUDE_DIRECTORIES command."); + cmSystemTools::Error + ("Empty Include Directory Passed into INCLUDE_DIRECTORIES command."); } std::string unixPath = *i; cmSystemTools::ConvertToUnixSlashes(unixPath); |