Use LOG(FATAL) instead of CHECK(false)

This commit is contained in:
Shinichiro Hamaji 2017-05-09 17:01:07 +09:00
parent f012836db1
commit 7314fa3f86

View File

@ -282,7 +282,7 @@ void TestLogging(bool check_counts) {
}
static void NoAllocNewHook() {
CHECK(false) << "unexpected new";
LOG(FATAL) << "unexpected new";
}
struct NewHook {