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

Unified Diff: Source/wtf/StringExtrasTest.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/web/x11/WebScreenInfoFactory.cpp ('k') | Source/wtf/TypeTraits.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/StringExtrasTest.cpp
diff --git a/Source/wtf/StringExtrasTest.cpp b/Source/wtf/StringExtrasTest.cpp
index 915558907ecabdf7e9a2b9de2f9492599f4c6a30..e48275391e8e728340a11371fa53a49ac67677f4 100644
--- a/Source/wtf/StringExtrasTest.cpp
+++ b/Source/wtf/StringExtrasTest.cpp
@@ -121,7 +121,7 @@ TEST(WTF, IntegerToStringConversionSignedIntegerRegularNumbers)
TEST(WTF, IntegerToStringConversionUnsignedIntegerBoundaries)
{
testBoundaries<unsigned short>();
- testBoundaries<unsigned int>();
+ testBoundaries<unsigned>();
testBoundaries<unsigned long>();
testBoundaries<unsigned long long>();
}
@@ -129,7 +129,7 @@ TEST(WTF, IntegerToStringConversionUnsignedIntegerBoundaries)
TEST(WTF, IntegerToStringConversionUnsignedIntegerRegularNumbers)
{
testNumbers<unsigned short>();
- testNumbers<unsigned int>();
+ testNumbers<unsigned>();
testNumbers<unsigned long>();
testNumbers<unsigned long long>();
}
« no previous file with comments | « Source/web/x11/WebScreenInfoFactory.cpp ('k') | Source/wtf/TypeTraits.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698