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

Unified Diff: third_party/WebKit/Source/wtf/text/TextCodec.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/text/TextCodec.cpp
diff --git a/third_party/WebKit/Source/wtf/text/TextCodec.cpp b/third_party/WebKit/Source/wtf/text/TextCodec.cpp
index d57d29811c1d8e10bae8d8561bb3ff7a04c7783b..884d7ed7951f06ef824bc1b881234af0e072ceec 100644
--- a/third_party/WebKit/Source/wtf/text/TextCodec.cpp
+++ b/third_party/WebKit/Source/wtf/text/TextCodec.cpp
@@ -55,7 +55,7 @@ int TextCodec::getUnencodableReplacement(
codePoint);
return static_cast<int>(strlen(replacement));
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
replacement[0] = 0;
return 0;
}
« no previous file with comments | « third_party/WebKit/Source/wtf/text/StringStatics.cpp ('k') | third_party/WebKit/Source/wtf/text/TextCodecICU.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698