blob: 8f42f6e19779328a66c574475a69ae85ef41fc18 [file] [log] [blame]
Peter Mitsis8e35cc82016-01-13 13:02:56 -05001/*
2 * Copyright (c) 2015 Wind River Systems, Inc.
3 *
David B. Kinderac74d8b2017-01-18 17:01:01 -08004 * SPDX-License-Identifier: Apache-2.0
Peter Mitsis8e35cc82016-01-13 13:02:56 -05005 */
6
7/*
8 * @file
9 * @brief Stub for C++ virtual tables
10 */
11
12/**
13 *
14 * @brief basic virtual tables required for classes to build
15 *
16 */
Peter Mitsis8e35cc82016-01-13 13:02:56 -050017namespace __cxxabiv1 {
18 class __class_type_info {
19 virtual void dummy();
20 };
21 class __si_class_type_info {
22 virtual void dummy();
23 };
24 void __class_type_info::dummy() { } // causes the vtable to get created here
25 void __si_class_type_info::dummy() { } // causes the vtable to get created here
26};