From 41f8d4807b637d911d4706bd381638b8c0d09c93 Mon Sep 17 00:00:00 2001 From: "reed@android.com" Date: Thu, 23 Jul 2009 16:00:37 +0000 Subject: [PATCH] remove const from function return-type signature (useless, and generates gcc warnings) git-svn-id: http://skia.googlecode.com/svn/trunk@286 2bbb7eff-a529-9590-31e7-b0007b416f81 --- include/core/SkMask.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/core/SkMask.h b/include/core/SkMask.h index 4139d0bfc5..d39df138fb 100644 --- a/include/core/SkMask.h +++ b/include/core/SkMask.h @@ -110,7 +110,7 @@ struct SkMask { /** Return the number of 32-bit words in a row of the 32-bit plane of an LCD or VerticalLCD mask. */ - const unsigned rowWordsLCD() const { + unsigned rowWordsLCD() const { SkASSERT(fFormat == kHorizontalLCD_Format || fFormat == kVerticalLCD_Format); if (fFormat == kHorizontalLCD_Format) return fBounds.width() + 2;