does this help? (#3795)

* does this help?

* maybe this helps

* oops I snuck in an O0

* only firmware
This commit is contained in:
Matthew Kennedy 2022-01-16 05:55:40 -08:00 committed by GitHub
parent 0a31061da7
commit 71fb9e9a7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -400,3 +400,9 @@ float tanf_taylor(float x) {
// tan = sin / cos
return sin_val / cos_val;
}
#if EFI_PROD_CODE
extern "C" void __cxa_pure_virtual(void) {
osalSysHalt("Pure virtual function call.");
}
#endif