Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2157)

Unified Diff: Source/wtf/text/WTFString.h

Issue 285643006: Kill WTF::DecimalNumber class (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Inline single-line function Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/wtf/DecimalNumber.cpp ('k') | Source/wtf/wtf.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « Source/wtf/DecimalNumber.cpp ('k') | Source/wtf/wtf.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698