1 /*
2  * Copyright (c) 2015 Wind River Systems, Inc.
3  *
4  * SPDX-License-Identifier: Apache-2.0
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  */
17 namespace __cxxabiv1 {
18 	class __class_type_info {
19 		virtual void dummy();
20 	};
21 	class __si_class_type_info {
22 		virtual void dummy();
23 	};
dummy()24 	void __class_type_info::dummy() { }  // causes the vtable to get created here
dummy()25 	void __si_class_type_info::dummy() { }  // causes the vtable to get created here
26 };
27