| Index: src/v8-counters.h
|
| diff --git a/src/v8-counters.h b/src/v8-counters.h
|
| index bd1f035079f571b6e9173ff9a0c1bd4237324cd4..9819cdc696776ee8e7fa37068ffde39c8ac02390 100644
|
| --- a/src/v8-counters.h
|
| +++ b/src/v8-counters.h
|
| @@ -122,11 +122,13 @@ namespace v8 { namespace internal {
|
| // This file contains all the v8 counters that are in use.
|
| class Counters : AllStatic {
|
| public:
|
| -#define SR(name, caption) static StatsRate name;
|
| +#define SR(name, caption) \
|
| + static StatsRate name;
|
| STATS_RATE_LIST(SR)
|
| #undef SR
|
|
|
| -#define SC(name, caption) static StatsCounter name;
|
| +#define SC(name, caption) \
|
| + static StatsCounter name;
|
| STATS_COUNTER_LIST_1(SC)
|
| STATS_COUNTER_LIST_2(SC)
|
| #undef SC
|
|
|