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

Unified Diff: Tools/Scripts/webkitpy/thirdparty/coverage/tracer.c

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/WTFString.cpp ('k') | public/platform/WebGraphicsContext3D.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/Scripts/webkitpy/thirdparty/coverage/tracer.c
diff --git a/Tools/Scripts/webkitpy/thirdparty/coverage/tracer.c b/Tools/Scripts/webkitpy/thirdparty/coverage/tracer.c
index 3bed5f809628fd1275d4810dc106f8b780583de1..cff0bd89bfb763f2f6d3ae6cdc4c4b689904fc8b 100644
--- a/Tools/Scripts/webkitpy/thirdparty/coverage/tracer.c
+++ b/Tools/Scripts/webkitpy/thirdparty/coverage/tracer.c
@@ -104,15 +104,15 @@ typedef struct {
#if COLLECT_STATS
struct {
- unsigned int calls;
- unsigned int lines;
- unsigned int returns;
- unsigned int exceptions;
- unsigned int others;
- unsigned int new_files;
- unsigned int missed_returns;
- unsigned int stack_reallocs;
- unsigned int errors;
+ unsigned calls;
+ unsigned lines;
+ unsigned returns;
+ unsigned exceptions;
+ unsigned others;
+ unsigned new_files;
+ unsigned missed_returns;
+ unsigned stack_reallocs;
+ unsigned errors;
} stats;
#endif /* COLLECT_STATS */
} CTracer;
« no previous file with comments | « Source/wtf/text/WTFString.cpp ('k') | public/platform/WebGraphicsContext3D.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698