diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-04-08 07:55:52 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-07-22 13:27:56 (GMT) |
commit | dfaa87f1b3335b2e80f68726fd5e1b3bbd87d667 (patch) | |
tree | d631728ba6308e21581ab455fd341d9fc92dd11d /Source/cmReturnCommand.cxx | |
parent | 28f2d12a055e025aa0ddeb9842f204f29181eaff (diff) | |
download | CMake-dfaa87f1b3335b2e80f68726fd5e1b3bbd87d667.zip CMake-dfaa87f1b3335b2e80f68726fd5e1b3bbd87d667.tar.gz CMake-dfaa87f1b3335b2e80f68726fd5e1b3bbd87d667.tar.bz2 |
cmState: Support BuiltinCommands as free functions
Diffstat (limited to 'Source/cmReturnCommand.cxx')
-rw-r--r-- | Source/cmReturnCommand.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmReturnCommand.cxx b/Source/cmReturnCommand.cxx index ceea8b4..5905669 100644 --- a/Source/cmReturnCommand.cxx +++ b/Source/cmReturnCommand.cxx @@ -5,8 +5,8 @@ #include "cmExecutionStatus.h" // cmReturnCommand -bool cmReturnCommand::InitialPass(std::vector<std::string> const&, - cmExecutionStatus& status) +bool cmReturnCommand(std::vector<std::string> const&, + cmExecutionStatus& status) { status.SetReturnInvoked(); return true; |