diff options
author | Gregor Jasny <gjasny@googlemail.com> | 2014-11-29 17:56:18 +0100 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-12-01 09:50:49 -0500 |
commit | 0de867dde282670461e56ce61e9c33fc6044d9a4 (patch) | |
tree | af94ceb9dbebc712c08381b520462aca49dd113d /Source/cmExecutionStatus.h | |
parent | 8e75f1d2fa3049ac31f4ebdbc255fca3e6414802 (diff) | |
download | cmake-0de867dde282670461e56ce61e9c33fc6044d9a4.tar.gz |
continue: Add a new CMake language command for loop continuation (#14013)
Inspired-by: Doug Barbieri
Signed-off-by: Gregor Jasny <gjasny@googlemail.com>
Diffstat (limited to 'Source/cmExecutionStatus.h')
-rw-r--r-- | Source/cmExecutionStatus.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmExecutionStatus.h b/Source/cmExecutionStatus.h index 5c94a97585..d4da5a457b 100644 --- a/Source/cmExecutionStatus.h +++ b/Source/cmExecutionStatus.h @@ -36,10 +36,16 @@ public: virtual bool GetBreakInvoked() { return this->BreakInvoked; } + virtual void SetContinueInvoked(bool val) + { this->ContinueInvoked = val; } + virtual bool GetContinueInvoked() + { return this->ContinueInvoked; } + virtual void Clear() { this->ReturnInvoked = false; this->BreakInvoked = false; + this->ContinueInvoked = false; this->NestedError = false; } virtual void SetNestedError(bool val) { this->NestedError = val; } @@ -49,6 +55,7 @@ public: protected: bool ReturnInvoked; bool BreakInvoked; + bool ContinueInvoked; bool NestedError; }; |