Closed
Bug 815599
Opened 12 years ago
Closed 12 years ago
'unused variable' warnings in gfx/2d/Blur.cpp
Categories
(Core :: Graphics, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: MatsPalmgren_bugz, Unassigned)
References
Details
gfx/2d/Blur.cpp:602:15: warning: unused variable 'intRow' [-Wunused-variable]
uint32_t *intRow = aIntegralImage + (y * stride32bit);
^
gfx/2d/Blur.cpp:603:15: warning: unused variable 'intPrevRow' [-Wunused-variable]
uint32_t *intPrevRow = aIntegralImage + (y - 1) * stride32bit;
^
gfx/2d/Blur.cpp:604:15: warning: unused variable 'intFirstRow' [-Wunused-variable]
uint32_t *intFirstRow = aIntegralImage;
^
Comment 1•12 years ago
|
||
Fixed as part of Bug 818004.
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•