Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: third_party/WebKit/Source/core/svg/SVGPathStringSource.cpp

Issue 2748223002: Replace ASSERT_NOT_REACHED with NOTREACHED in core/svg/ (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/svg/SVGPathStringSource.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGPathStringSource.cpp b/third_party/WebKit/Source/core/svg/SVGPathStringSource.cpp
index dd46b3a6b1ce48436928fa705d23d87cc8ed87eb..3359100db6fad5a6c81bd27305702981a85ab25d 100644
--- a/third_party/WebKit/Source/core/svg/SVGPathStringSource.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGPathStringSource.cpp
@@ -243,7 +243,7 @@ PathSegmentData SVGPathStringSource::parseSegment() {
segment.targetPoint.setY(parseNumberWithError());
break;
case PathSegUnknown:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
if (UNLIKELY(m_error.status() != SVGParseStatus::NoError))

Powered by Google App Engine
This is Rietveld 408576698