From 87001ed1f6f1d498874f7f4ba39abcf608ae8bf5 Mon Sep 17 00:00:00 2001 From: "reed@google.com" Date: Mon, 17 Feb 2014 16:28:05 +0000 Subject: [PATCH] fix style nit in drawIRect git-svn-id: http://skia.googlecode.com/svn/trunk@13479 2bbb7eff-a529-9590-31e7-b0007b416f81 --- include/core/SkCanvas.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/core/SkCanvas.h b/include/core/SkCanvas.h index 80d46ed9c5..7801b35c82 100644 --- a/include/core/SkCanvas.h +++ b/include/core/SkCanvas.h @@ -635,8 +635,7 @@ public: @param rect The rect to be drawn @param paint The paint used to draw the rect */ - void drawIRect(const SkIRect& rect, const SkPaint& paint) - { + void drawIRect(const SkIRect& rect, const SkPaint& paint) { SkRect r; r.set(rect); // promotes the ints to scalars this->drawRect(r, paint);