about summary refs log tree commit diff
path: root/absl/base/internal/throw_delegate.cc
diff options
context:
space:
mode:
Diffstat (limited to 'absl/base/internal/throw_delegate.cc')
-rw-r--r--absl/base/internal/throw_delegate.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/absl/base/internal/throw_delegate.cc b/absl/base/internal/throw_delegate.cc
index 46dc573cfa84..1c40efcb3cd8 100644
--- a/absl/base/internal/throw_delegate.cc
+++ b/absl/base/internal/throw_delegate.cc
@@ -30,8 +30,8 @@ template <typename T>
 #ifdef ABSL_HAVE_EXCEPTIONS
   throw error;
 #else
-  ABSL_RAW_LOG(ERROR, "%s", error.what());
-  abort();
+  ABSL_RAW_LOG(FATAL, "%s", error.what());
+  std::abort();
 #endif
 }
 }  // namespace