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

Unified Diff: sandbox/linux/bpf_dsl/bpf_dsl.cc

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: sandbox/linux/bpf_dsl/bpf_dsl.cc
diff --git a/sandbox/linux/bpf_dsl/bpf_dsl.cc b/sandbox/linux/bpf_dsl/bpf_dsl.cc
index fed6368db67955a3db7d8366a1ddd4f6e759db9f..a5a060cfcba25680acdacd7e998f9b6c777b4d30 100644
--- a/sandbox/linux/bpf_dsl/bpf_dsl.cc
+++ b/sandbox/linux/bpf_dsl/bpf_dsl.cc
@@ -220,7 +220,8 @@ uint64_t DefaultMask(size_t size) {
case 8:
return std::numeric_limits<uint64_t>::max();
default:
- CHECK(false) << "Unimplemented DefaultMask case";
+ // Unimplemented DefaultMask case
+ CHECK(false);
return 0;
}
}

Powered by Google App Engine
This is Rietveld 408576698