2016-01-14 02:02:56 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015 Wind River Systems, Inc.
|
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2016-01-14 02:02:56 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* @file
|
|
|
|
* @brief Stub for C++ virtual tables
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @brief basic virtual tables required for classes to build
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
namespace __cxxabiv1 {
|
|
|
|
class __class_type_info {
|
|
|
|
virtual void dummy();
|
|
|
|
};
|
|
|
|
class __si_class_type_info {
|
|
|
|
virtual void dummy();
|
|
|
|
};
|
|
|
|
void __class_type_info::dummy() { } // causes the vtable to get created here
|
|
|
|
void __si_class_type_info::dummy() { } // causes the vtable to get created here
|
|
|
|
};
|