STYLE: fix line length

This commit is contained in:
Ken Martin
2006-05-10 14:15:15 -04:00
parent 20c27063dd
commit d77fbb9640
6 changed files with 38 additions and 43 deletions
+2 -1
View File
@@ -30,7 +30,8 @@ bool cmConfigureFileCommand::InitialPass(std::vector<std::string> const& args)
this->OuputFile = args[1];
if ( !this->Makefile->CanIWriteThisFile(this->OuputFile.c_str()) )
{
std::string e = "attempted to configure a file: " + this->OuputFile + " into a source directory.";
std::string e = "attempted to configure a file: " + this->OuputFile
+ " into a source directory.";
this->SetError(e.c_str());
cmSystemTools::SetFatalErrorOccured();
return false;