Bug 1130860 - Part 2: Fix static keyword in wrong place. r=me CLOSED TREE

This commit is contained in:
Tooru Fujisawa 2015-02-10 02:34:08 +09:00
Родитель 70bebc081d
Коммит 229b14c947
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -424,8 +424,8 @@ AppendEscapedLineTerminator(StringBuffer &sb, const char16_t c)
return true;
}
static template <typename CharT>
MOZ_ALWAYS_INLINE bool
template <typename CharT>
static MOZ_ALWAYS_INLINE bool
SetupBuffer(StringBuffer &sb, const CharT *oldChars, size_t oldLen, const CharT *it)
{
if (mozilla::IsSame<CharT, char16_t>::value && !sb.ensureTwoByteChars())