diff options
Diffstat (limited to 'js/src/util/StructuredSpewer.h')
-rw-r--r-- | js/src/util/StructuredSpewer.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/js/src/util/StructuredSpewer.h b/js/src/util/StructuredSpewer.h index 407dc34a25..613ef65b59 100644 --- a/js/src/util/StructuredSpewer.h +++ b/js/src/util/StructuredSpewer.h @@ -73,7 +73,6 @@ namespace js { # define STRUCTURED_CHANNEL_LIST(_) \ _(BaselineICStats) \ - _(ScriptStats) \ _(CacheIRHealthReport) // Structured spew channels @@ -187,8 +186,8 @@ class StructuredSpewer { // Globally selected channel. StructuredSpewFilter selectedChannel_; - using NameArray = - mozilla::EnumeratedArray<SpewChannel, SpewChannel::Count, const char*>; + using NameArray = mozilla::EnumeratedArray<SpewChannel, const char*, + size_t(SpewChannel::Count)>; // Channel Names static NameArray const names_; |