STYLE: fix line length

This commit is contained in:
Ken Martin
2006-05-11 15:50:11 -04:00
parent 80f71359c1
commit ba2b99bb9f
17 changed files with 82 additions and 56 deletions

View File

@@ -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