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

Unified Diff: third_party/WebKit/Source/platform/text/ICUError.cpp

Issue 2561963002: base: Remove the string logging from CHECK(). (Closed)
Patch Set: checkstring: rebase 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/platform/text/ICUError.cpp
diff --git a/third_party/WebKit/Source/platform/text/ICUError.cpp b/third_party/WebKit/Source/platform/text/ICUError.cpp
index 33d64313cd135530ed4db49d523f9f62f64e71f2..9178a9de2b4c1b9e8ea447355d555361db1ee500 100644
--- a/third_party/WebKit/Source/platform/text/ICUError.cpp
+++ b/third_party/WebKit/Source/platform/text/ICUError.cpp
@@ -18,7 +18,7 @@ void ICUError::handleFailure() {
ICUOutOfMemory();
break;
case U_ILLEGAL_ARGUMENT_ERROR:
- CHECK(false) << m_error;
+ CHECK(false);
break;
default:
break;

Powered by Google App Engine
This is Rietveld 408576698