aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/utils/SkParsePath.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/SkParsePath.cpp')
-rw-r--r--src/utils/SkParsePath.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/utils/SkParsePath.cpp b/src/utils/SkParsePath.cpp
index 4c9923f49f..8c7a4d0df8 100644
--- a/src/utils/SkParsePath.cpp
+++ b/src/utils/SkParsePath.cpp
@@ -221,10 +221,7 @@ void SkParsePath::ToSVGString(const SkPath& path, SkString* str) {
for (;;) {
switch (iter.next(pts, false)) {
- case SkPath::kConic_Verb:
- SkASSERT(0);
- break;
- case SkPath::kMove_Verb:
+ case SkPath::kMove_Verb:
append_scalars(&stream, 'M', &pts[0].fX, 2);
break;
case SkPath::kLine_Verb: