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

Unified Diff: third_party/crashpad/crashpad/util/synchronization/semaphore_mac.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: third_party/crashpad/crashpad/util/synchronization/semaphore_mac.cc
diff --git a/third_party/crashpad/crashpad/util/synchronization/semaphore_mac.cc b/third_party/crashpad/crashpad/util/synchronization/semaphore_mac.cc
index e8a79ab4c2dc2f58fc6fad1a8247cb705a9b7ec9..578f631cda7d3ff8210dd1ce69855680068550fc 100644
--- a/third_party/crashpad/crashpad/util/synchronization/semaphore_mac.cc
+++ b/third_party/crashpad/crashpad/util/synchronization/semaphore_mac.cc
@@ -20,7 +20,8 @@ namespace crashpad {
Semaphore::Semaphore(int value)
: semaphore_(dispatch_semaphore_create(value)) {
- CHECK(semaphore_) << "dispatch_semaphore_create";
+ // dispatch_semaphore_create
+ CHECK(semaphore_);
}
Semaphore::~Semaphore() {

Powered by Google App Engine
This is Rietveld 408576698