1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-30 23:24:49 +03:00

Add __throw_logic_error ()

This commit is contained in:
Ivan Grokhotkov 2015-12-06 20:39:54 +03:00
parent 3d1fbc60ab
commit c6c7d24750

@ -68,6 +68,10 @@ void __throw_length_error(char const*) {
void __throw_bad_alloc() {
panic();
}
void __throw_logic_error(const char* str) {
panic();
}
}
// TODO: rebuild windows toolchain to make this unnecessary: