xref: /aosp_15_r20/external/cronet/base/nodebug_assertion.cc (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1 // Copyright 2022 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include <__config>
6 
7 #include "base/base_export.h"
8 #include "base/immediate_crash.h"
9 
10 _LIBCPP_BEGIN_NAMESPACE_STD
11 
__libcpp_verbose_abort(char const * format,...)12 _LIBCPP_NORETURN BASE_EXPORT void __libcpp_verbose_abort(char const* format,
13                                                          ...) {
14   base::ImmediateCrash();
15 }
16 
17 _LIBCPP_END_NAMESPACE_STD
18