Issue #2046 - Follow-up: Fix deprot in builtin/intl

Missing a couple of includes.
Tag #80
This commit is contained in:
Job Bautista 2023-03-14 22:35:32 +08:00 committed by roytam1
commit a2d6260cd6
2 changed files with 2 additions and 0 deletions

View file

@ -6,6 +6,7 @@
/* Implementation of the Intl.PluralRules proposal. */
#include "builtin/intl/NumberFormat.h"
#include "builtin/intl/PluralRules.h"
#include "mozilla/Assertions.h"

View file

@ -14,6 +14,7 @@
#include <stdint.h>
#include "jsatom.h"
#include "jscntxt.h"
#include "jsstr.h"
#include "builtin/intl/CommonFunctions.h"