зеркало из https://github.com/mozilla/gecko-dev.git
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:
Родитель
cb79b67922
Коммит
c65a72ac1e
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче