aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-11-21 18:34:15 +0000
committerGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-11-21 18:34:15 +0000
commitc19468e4bbdb7238fb0bdd2900c8998d97b80492 (patch)
tree524834f451f2979cc4cab00f69f5f480a9c35ec7
parent6dec8fcb4427c68649aede96864cff7c71df6393 (diff)
add default: to fix warning
git-svn-id: http://skia.googlecode.com/svn/trunk@6533 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r--src/core/SkStroke.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/SkStroke.cpp b/src/core/SkStroke.cpp
index 729ec4e544..9b20bd844f 100644
--- a/src/core/SkStroke.cpp
+++ b/src/core/SkStroke.cpp
@@ -786,6 +786,8 @@ void SkStroke::strokeRect(const SkRect& origRect, SkPath* dst,
case SkPaint::kRound_Join:
dst->addRoundRect(r, radius, radius, dir);
break;
+ default:
+ break;
}
if (fWidth < SkMinScalar(rw, rh) && !fDoFill) {