diff options
Diffstat (limited to 'Source/cmEndFunctionCommand.cxx')
-rw-r--r-- | Source/cmEndFunctionCommand.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Source/cmEndFunctionCommand.cxx b/Source/cmEndFunctionCommand.cxx index 04b242d..b4bfa2d 100644 --- a/Source/cmEndFunctionCommand.cxx +++ b/Source/cmEndFunctionCommand.cxx @@ -11,13 +11,11 @@ ============================================================================*/ #include "cmEndFunctionCommand.h" -bool cmEndFunctionCommand -::InvokeInitialPass(std::vector<cmListFileArgument> const&, - cmExecutionStatus &) +bool cmEndFunctionCommand::InvokeInitialPass( + std::vector<cmListFileArgument> const&, cmExecutionStatus&) { this->SetError("An ENDFUNCTION command was found outside of a proper " "FUNCTION ENDFUNCTION structure. Or its arguments did not " "match the opening FUNCTION command."); return false; } - |