Peter Mitsis | 8e35cc8 | 2016-01-13 13:02:56 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 Wind River Systems, Inc. |
| 3 | * |
David B. Kinder | ac74d8b | 2017-01-18 17:01:01 -0800 | [diff] [blame] | 4 | * SPDX-License-Identifier: Apache-2.0 |
Peter Mitsis | 8e35cc8 | 2016-01-13 13:02:56 -0500 | [diff] [blame] | 5 | */ |
| 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 Mitsis | 8e35cc8 | 2016-01-13 13:02:56 -0500 | [diff] [blame] | 17 | namespace __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 | }; |