Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1436)

Unified Diff: runtime/vm/longjump.h

Issue 2481873005: clang-format runtime/vm (Closed)
Patch Set: Merge Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/log.cc ('k') | runtime/vm/longjump.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « runtime/vm/log.cc ('k') | runtime/vm/longjump.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698