Path: blob/main/system/lib/libcxxabi/src/cxa_virtual.cpp
6173 views
//===----------------------------------------------------------------------===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#include "cxxabi.h"9#include "abort_message.h"1011namespace __cxxabiv1 {12extern "C" {13_LIBCXXABI_FUNC_VIS _LIBCXXABI_NORETURN14void __cxa_pure_virtual(void) {15__abort_message("Pure virtual function called!");16}1718_LIBCXXABI_FUNC_VIS _LIBCXXABI_NORETURN19void __cxa_deleted_virtual(void) {20__abort_message("Deleted virtual function called!");21}22} // extern "C"23} // abi242526