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

Unified Diff: Source/platform/CheckedInt.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/core/xml/XPathFunctions.h ('k') | Source/platform/KeyCodeConversionAndroid.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/CheckedInt.h
diff --git a/Source/platform/CheckedInt.h b/Source/platform/CheckedInt.h
index 906107b0508a766bc0b447c2c89562b7659d0946..762e4f97c56a975806876ae3630b5c755d7089b2 100644
--- a/Source/platform/CheckedInt.h
+++ b/Source/platform/CheckedInt.h
@@ -131,7 +131,7 @@ struct IsSupportedPass2<int>
{ static const bool value = true; };
template<>
-struct IsSupportedPass2<unsigned int>
+struct IsSupportedPass2<unsigned>
{ static const bool value = true; };
template<>
« no previous file with comments | « Source/core/xml/XPathFunctions.h ('k') | Source/platform/KeyCodeConversionAndroid.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698