aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/RegionBench.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bench/RegionBench.cpp')
-rw-r--r--bench/RegionBench.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/RegionBench.cpp b/bench/RegionBench.cpp
index b984b62f55..51d389c751 100644
--- a/bench/RegionBench.cpp
+++ b/bench/RegionBench.cpp
@@ -42,7 +42,7 @@ static bool sectsrgn_proc(SkRegion& a, SkRegion& b) {
static bool sectsrect_proc(SkRegion& a, SkRegion& b) {
SkIRect r = a.getBounds();
r.inset(r.width()/4, r.height()/4);
- (void)a.intersects(r);
+ return a.intersects(r);
}
static bool containsxy_proc(SkRegion& a, SkRegion& b) {