1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-19 23:22:16 +03:00

Fix linker errors with WiFiMulti

This commit is contained in:
Ivan Grokhotkov 2015-06-19 20:44:33 +03:00
parent 5f72ed23a5
commit aaf1f7652d

View File

@ -58,6 +58,14 @@ namespace std {
void __throw_bad_function_call() {
abort();
}
void __throw_length_error(char const*) {
abort();
}
void __throw_bad_alloc() {
abort();
}
}
// TODO: rebuild windows toolchain to make this unnecessary: