aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkRRect.cpp
diff options
context:
space:
mode:
authorGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-11-30 00:38:29 +0000
committerGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-11-30 00:38:29 +0000
commit1c2c2fed075e05837878813d6f8fe6ca8fc7ea00 (patch)
tree5d146aa8866c698a39cf3a71d0fac8ba8893179a /src/core/SkRRect.cpp
parent528952b5afea0e82bf6db9ef22128533d50ef9e3 (diff)
Fix for roll-blocking compiler error in SkRRect.cpp
git-svn-id: http://skia.googlecode.com/svn/trunk@6630 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/core/SkRRect.cpp')
-rw-r--r--src/core/SkRRect.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/SkRRect.cpp b/src/core/SkRRect.cpp
index b4214ca82a..03b8bbb930 100644
--- a/src/core/SkRRect.cpp
+++ b/src/core/SkRRect.cpp
@@ -276,9 +276,12 @@ void SkRRect::validate() const {
SkASSERT(!fRect.isEmpty());
SkASSERT(!allRadiiZero && !allRadiiSame && !allCornersSquare);
break;
+#if 0
+ // error: case value not in enumerated type 'SkRRect::Type
case kUnknown_Type:
// no limits on this
break;
+#endif
}
}
#endif // SK_DEBUG