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

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

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/StringBuilder.cpp ('k') | Tools/Scripts/webkitpy/thirdparty/coverage/tracer.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/text/WTFString.cpp
diff --git a/Source/wtf/text/WTFString.cpp b/Source/wtf/text/WTFString.cpp
index a5ebda3c3ddbd59e0846e63c54258946125aabbf..1ae107ea6aebee860a7c1c814357bcd5ed5fd4ef 100644
--- a/Source/wtf/text/WTFString.cpp
+++ b/Source/wtf/text/WTFString.cpp
@@ -504,7 +504,7 @@ String String::number(int number)
return numberToStringSigned<String>(number);
}
-String String::number(unsigned int number)
+String String::number(unsigned number)
{
return numberToStringUnsigned<String>(number);
}
« no previous file with comments | « Source/wtf/text/StringBuilder.cpp ('k') | Tools/Scripts/webkitpy/thirdparty/coverage/tracer.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698