Chromium Code Reviews

Unified Diff: Source/core/html/canvas/WebGLFramebuffer.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.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « Source/core/html/TimeRanges.cpp ('k') | Source/core/html/canvas/WebGLGetInfo.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/canvas/WebGLFramebuffer.cpp
diff --git a/Source/core/html/canvas/WebGLFramebuffer.cpp b/Source/core/html/canvas/WebGLFramebuffer.cpp
index 2eadbeb7069d449bda91c37609322c21c72963a3..8dff43cbf19d8fa2e8788c07f7138552554834e2 100644
--- a/Source/core/html/canvas/WebGLFramebuffer.cpp
+++ b/Source/core/html/canvas/WebGLFramebuffer.cpp
@@ -489,7 +489,7 @@ GLenum WebGLFramebuffer::colorBufferFormat() const
GLenum WebGLFramebuffer::checkStatus(const char** reason) const
{
- unsigned int count = 0;
+ unsigned count = 0;
GLsizei width = 0, height = 0;
bool haveDepth = false;
bool haveStencil = false;
« no previous file with comments | « Source/core/html/TimeRanges.cpp ('k') | Source/core/html/canvas/WebGLGetInfo.h » ('j') | no next file with comments »

Powered by Google App Engine