| Index: runtime/vm/longjump.h
|
| diff --git a/runtime/vm/longjump.h b/runtime/vm/longjump.h
|
| index b62230fe58fc94a957268aedee3f96c92ee61b45..7fbe9eb1b25fead213a2be720b7e4a5b2f4803ca 100644
|
| --- a/runtime/vm/longjump.h
|
| +++ b/runtime/vm/longjump.h
|
| @@ -17,15 +17,13 @@ class Error;
|
| class LongJumpScope : public StackResource {
|
| public:
|
| LongJumpScope()
|
| - : StackResource(Thread::Current()),
|
| - top_(NULL),
|
| - base_(Thread::Current()->long_jump_base()) {
|
| + : StackResource(Thread::Current()),
|
| + top_(NULL),
|
| + base_(Thread::Current()->long_jump_base()) {
|
| Thread::Current()->set_long_jump_base(this);
|
| }
|
|
|
| - ~LongJumpScope() {
|
| - Thread::Current()->set_long_jump_base(base_);
|
| - }
|
| + ~LongJumpScope() { Thread::Current()->set_long_jump_base(base_); }
|
|
|
| jmp_buf* Set();
|
| void Jump(int value, const Error& error);
|
|
|