From 7314fa3f8682c9ebff6dc820bd40c490d9ec1bec Mon Sep 17 00:00:00 2001 From: Shinichiro Hamaji Date: Tue, 9 May 2017 17:01:07 +0900 Subject: [PATCH] Use LOG(FATAL) instead of CHECK(false) --- src/logging_unittest.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logging_unittest.cc b/src/logging_unittest.cc index b886222..97cbeaa 100644 --- a/src/logging_unittest.cc +++ b/src/logging_unittest.cc @@ -282,7 +282,7 @@ void TestLogging(bool check_counts) { } static void NoAllocNewHook() { - CHECK(false) << "unexpected new"; + LOG(FATAL) << "unexpected new"; } struct NewHook { -- 2.34.1