Index: third_party/WebKit/Source/core/layout/svg/SVGTextLayoutEngine.cpp |
diff --git a/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutEngine.cpp b/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutEngine.cpp |
index 5f949b8deec494ceed2bcbd2def01088bc242a53..0e36470b531e96a7606c2db91c1a1ddbee5d4923 100644 |
--- a/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutEngine.cpp |
+++ b/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutEngine.cpp |
@@ -450,8 +450,7 @@ void SVGTextLayoutEngine::layoutTextOnLineOrPath(SVGInlineTextBox* textBox, Line |
break; |
FloatPoint point; |
- bool ok = m_textPathCalculator->pointAndNormalAtLength(textPathOffset, point, angle); |
- ASSERT_UNUSED(ok, ok); |
+ m_textPathCalculator->pointAndNormalAtLength(textPathOffset, point, angle); |
x = point.x(); |
y = point.y(); |