diff options
author | Moonchild <moonchild@palemoon.org> | 2020-12-22 20:32:56 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-12-22 20:32:56 +0000 |
commit | 25b6703e956a33e0ecd8bdc18f423e5eb5dd09d4 (patch) | |
tree | 7c410dbb5d672661bf0a567736501ec3f5ef5191 /js/public/Class.h | |
parent | 911cbcd1af7d8becf9694e3b51ce773908e1a93d (diff) | |
download | UXP-25b6703e956a33e0ecd8bdc18f423e5eb5dd09d4.tar UXP-25b6703e956a33e0ecd8bdc18f423e5eb5dd09d4.tar.gz UXP-25b6703e956a33e0ecd8bdc18f423e5eb5dd09d4.tar.lz UXP-25b6703e956a33e0ecd8bdc18f423e5eb5dd09d4.tar.xz UXP-25b6703e956a33e0ecd8bdc18f423e5eb5dd09d4.zip |
Issue #1701 - Implement Intl.PluralRules API
Diffstat (limited to 'js/public/Class.h')
-rw-r--r-- | js/public/Class.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/public/Class.h b/js/public/Class.h index 9cb377892..094e4a7ed 100644 --- a/js/public/Class.h +++ b/js/public/Class.h @@ -778,7 +778,7 @@ struct JSClass { // application. #define JSCLASS_GLOBAL_APPLICATION_SLOTS 5 #define JSCLASS_GLOBAL_SLOT_COUNT \ - (JSCLASS_GLOBAL_APPLICATION_SLOTS + JSProto_LIMIT * 2 + 45) + (JSCLASS_GLOBAL_APPLICATION_SLOTS + JSProto_LIMIT * 2 + 46) #define JSCLASS_GLOBAL_FLAGS_WITH_SLOTS(n) \ (JSCLASS_IS_GLOBAL | JSCLASS_HAS_RESERVED_SLOTS(JSCLASS_GLOBAL_SLOT_COUNT + (n))) #define JSCLASS_GLOBAL_FLAGS \ |