Fix emulator build error
[platform/framework/web/chromium-efl.git] / base / nodebug_assertion.cc
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
12 _LIBCPP_NORETURN BASE_EXPORT void __libcpp_verbose_abort(char const* format,
13                                                          ...) {
14   base::ImmediateCrash();
15 }
16
17 _LIBCPP_END_NAMESPACE_STD