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

Unified Diff: third_party/WebKit/Source/wtf/typed_arrays/ArrayBufferView.cpp

Issue 2585673002: Replace ASSERT, ENABLE(ASSERT), and ASSERT_NOT_REACHED in wtf (Closed)
Patch Set: Fix an Asan issue with LinkedHashSetNodeBase::unlink Created 4 years 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/wtf/typed_arrays/ArrayBufferView.cpp
diff --git a/third_party/WebKit/Source/wtf/typed_arrays/ArrayBufferView.cpp b/third_party/WebKit/Source/wtf/typed_arrays/ArrayBufferView.cpp
index cc664eb678b061967a8d403e992e8fc55d45bbd6..48d549b9f92eaab29f028c9e928efd2113b1dcf0 100644
--- a/third_party/WebKit/Source/wtf/typed_arrays/ArrayBufferView.cpp
+++ b/third_party/WebKit/Source/wtf/typed_arrays/ArrayBufferView.cpp
@@ -86,7 +86,7 @@ const char* ArrayBufferView::typeName() {
return "DataView";
break;
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return "Unknown";
}

Powered by Google App Engine
This is Rietveld 408576698