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/cmIncludeExternalMSProjectCommand.cxx | |
parent | 80f71359c1157ddaa59291b95d2c05ceb577ffde (diff) | |
download | CMake-ba2b99bb9ff5e260f3129fdb4f87ae7e67a08301.zip CMake-ba2b99bb9ff5e260f3129fdb4f87ae7e67a08301.tar.gz CMake-ba2b99bb9ff5e260f3129fdb4f87ae7e67a08301.tar.bz2 |
STYLE: fix line length
Diffstat (limited to 'Source/cmIncludeExternalMSProjectCommand.cxx')
-rw-r--r-- | Source/cmIncludeExternalMSProjectCommand.cxx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Source/cmIncludeExternalMSProjectCommand.cxx b/Source/cmIncludeExternalMSProjectCommand.cxx index 7a9248f..b5038fa 100644 --- a/Source/cmIncludeExternalMSProjectCommand.cxx +++ b/Source/cmIncludeExternalMSProjectCommand.cxx @@ -17,12 +17,14 @@ #include "cmIncludeExternalMSProjectCommand.h" // cmIncludeExternalMSProjectCommand -bool cmIncludeExternalMSProjectCommand::InitialPass(std::vector<std::string> const& args) +bool cmIncludeExternalMSProjectCommand +::InitialPass(std::vector<std::string> const& args) { if(args.size() < 2) { - this->SetError("INCLUDE_EXTERNAL_MSPROJECT called with incorrect number of arguments"); - return false; + this->SetError("INCLUDE_EXTERNAL_MSPROJECT called with incorrect " + "number of arguments"); + return false; } // only compile this for win32 to avoid coverage errors #ifdef _WIN32 |