STYLE: fix line length

This commit is contained in:
Ken Martin
2006-05-10 15:08:38 -04:00
parent 14781101fd
commit bb88ef5e41
12 changed files with 58 additions and 32 deletions
+5 -2
View File
@@ -16,9 +16,12 @@
=========================================================================*/
#include "cmEndWhileCommand.h"
bool cmEndWhileCommand::InvokeInitialPass(std::vector<cmListFileArgument> const&)
bool cmEndWhileCommand
::InvokeInitialPass(std::vector<cmListFileArgument> const&)
{
this->SetError("An ENDWHILE command was found outside of a proper WHILE ENDWHILE structure. Or its arguments did not match the opening WHILE command.");
this->SetError("An ENDWHILE command was found outside of a proper "
"WHILE ENDWHILE structure. Or its arguments did not "
"match the opening WHILE command.");
return false;
}