Bug 1435916 - use a const array in nsTextFormatter::dosprintf; r=tromey

I don't know how this was not constant, but there you go.
This commit is contained in:
Nathan Froyd 2018-02-14 12:01:36 -05:00
Родитель cb79b67922
Коммит c65a72ac1e
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -471,7 +471,7 @@ nsTextFormatter::dosprintf(SprintfStateStr* aState, const char16_t* aFmt,
{
static const char16_t space = ' ';
static const char16_t hex[] = u"0123456789abcdef";
static char16_t HEX[] = u"0123456789ABCDEF";
static const char16_t HEX[] = u"0123456789ABCDEF";
static const BoxedValue emptyString(u"");
char16_t c;