mirror of
https://github.com/pascallanger/DIY-Multiprotocol-TX-Module.git
synced 2025-02-05 06:38:11 +00:00
7 lines
182 B
C++
7 lines
182 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) {
|
||
|
while(1)
|
||
|
;
|
||
|
}
|