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

Unified Diff: src/frames.cc

Issue 2452403003: Changed statement ZoneList to a ZoneChunkList
Patch Set: Created 4 years, 2 months 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 | « src/effects.h ('k') | src/gdb-jit.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/frames.cc
diff --git a/src/frames.cc b/src/frames.cc
index b52052eee8ba555e3bb16f18133acdb433c02ffb..f73194ddef63137665df6981a3b7fcdcddb41df5 100644
--- a/src/frames.cc
+++ b/src/frames.cc
@@ -1930,14 +1930,12 @@ int JSCallerSavedCode(int n) {
return caller_saved_code_data.reg_code[n];
}
-
#define DEFINE_WRAPPER(type, field) \
-class field##_Wrapper : public ZoneObject { \
- public: /* NOLINT */ \
- field##_Wrapper(const field& original) : frame_(original) { \
- } \
- field frame_; \
-};
+ class field##_Wrapper : public ZoneObject { \
+ public: /* NOLINT */ \
+ field##_Wrapper(const field& original) : frame_(original) {} \
+ field frame_; \
+ };
STACK_FRAME_TYPE_LIST(DEFINE_WRAPPER)
#undef DEFINE_WRAPPER
« no previous file with comments | « src/effects.h ('k') | src/gdb-jit.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698