Commit 7314fa3f authored by Shinichiro Hamaji's avatar Shinichiro Hamaji

Use LOG(FATAL) instead of CHECK(false)

parent f012836d
...@@ -282,7 +282,7 @@ void TestLogging(bool check_counts) { ...@@ -282,7 +282,7 @@ void TestLogging(bool check_counts) {
} }
static void NoAllocNewHook() { static void NoAllocNewHook() {
CHECK(false) << "unexpected new"; LOG(FATAL) << "unexpected new";
} }
struct NewHook { struct NewHook {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment