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

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

Issue 207783002: Omit "int" when using "unsigned" modifier (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 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/text/AtomicString.h ('k') | Source/wtf/text/StringBuilder.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/text/IntegerToStringConversion.h
diff --git a/Source/wtf/text/IntegerToStringConversion.h b/Source/wtf/text/IntegerToStringConversion.h
index df63448e2b618445a561c102ca91ce621bd14ed5..30c917c69b8c8b6ed795b70c3b2cb905ac3241f1 100644
--- a/Source/wtf/text/IntegerToStringConversion.h
+++ b/Source/wtf/text/IntegerToStringConversion.h
@@ -53,7 +53,7 @@ template<> struct ConversionTrait<AtomicString> {
template<typename T> struct UnsignedIntegerTrait;
template<> struct UnsignedIntegerTrait<int> {
- typedef unsigned int Type;
+ typedef unsigned Type;
};
template<> struct UnsignedIntegerTrait<long> {
typedef unsigned long Type;
« no previous file with comments | « Source/wtf/text/AtomicString.h ('k') | Source/wtf/text/StringBuilder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698