summaryrefslogtreecommitdiff
path: root/Source/cmExecutionStatus.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmExecutionStatus.h')
-rw-r--r--Source/cmExecutionStatus.h22
1 files changed, 8 insertions, 14 deletions
diff --git a/Source/cmExecutionStatus.h b/Source/cmExecutionStatus.h
index 201465d1d1..508c6bdfe2 100644
--- a/Source/cmExecutionStatus.h
+++ b/Source/cmExecutionStatus.h
@@ -24,28 +24,22 @@ class cmExecutionStatus
public:
cmExecutionStatus() { this->Clear(); }
- void SetReturnInvoked(bool val)
- { this->ReturnInvoked = val; }
- bool GetReturnInvoked()
- { return this->ReturnInvoked; }
+ void SetReturnInvoked(bool val) { this->ReturnInvoked = val; }
+ bool GetReturnInvoked() { return this->ReturnInvoked; }
- void SetBreakInvoked(bool val)
- { this->BreakInvoked = val; }
- bool GetBreakInvoked()
- { return this->BreakInvoked; }
+ void SetBreakInvoked(bool val) { this->BreakInvoked = val; }
+ bool GetBreakInvoked() { return this->BreakInvoked; }
- void SetContinueInvoked(bool val)
- { this->ContinueInvoked = val; }
- bool GetContinueInvoked()
- { return this->ContinueInvoked; }
+ void SetContinueInvoked(bool val) { this->ContinueInvoked = val; }
+ bool GetContinueInvoked() { return this->ContinueInvoked; }
void Clear()
- {
+ {
this->ReturnInvoked = false;
this->BreakInvoked = false;
this->ContinueInvoked = false;
this->NestedError = false;
- }
+ }
void SetNestedError(bool val) { this->NestedError = val; }
bool GetNestedError() { return this->NestedError; }