| Index: Source/wtf/text/WTFString.h
|
| diff --git a/Source/wtf/text/WTFString.h b/Source/wtf/text/WTFString.h
|
| index c1098672a815a30ca765013d56b1aca2fa193ee6..13078127885b7c8233cbb1e20515fdbd60125df8 100644
|
| --- a/Source/wtf/text/WTFString.h
|
| +++ b/Source/wtf/text/WTFString.h
|
| @@ -286,9 +286,10 @@ public:
|
|
|
| void append(const String&);
|
| void append(LChar);
|
| - void append(char c) { append(static_cast<LChar>(c)); };
|
| + void append(char c) { append(static_cast<LChar>(c)); }
|
| void append(UChar);
|
| void append(const LChar*, unsigned length);
|
| + void append(const char* charactersToAppend, unsigned length) { append(reinterpret_cast<const LChar*>(charactersToAppend), length); }
|
| void append(const UChar*, unsigned length);
|
| void insert(const String&, unsigned pos);
|
| void insert(const LChar*, unsigned length, unsigned pos);
|
|
|