mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-02 14:13:42 -04:00
10 lines
268 B
C++
10 lines
268 B
C++
/* We compile with nodefaultlibs, so we need to provide an error
|
|
* handler for an empty pure virtual function */
|
|
|
|
extern "C" void __cxa_pure_virtual(void) {
|
|
|
|
extern void __error(uint32_t num, uint32_t pc, uint32_t lr, uint32_t flag);
|
|
|
|
__error(11, 0, 0, 0);
|
|
}
|