mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-15 00:02:49 +03:00
Add __throw_logic_error (#1136)
This commit is contained in:
@ -68,6 +68,10 @@ void __throw_length_error(char const*) {
|
|||||||
void __throw_bad_alloc() {
|
void __throw_bad_alloc() {
|
||||||
panic();
|
panic();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void __throw_logic_error(const char* str) {
|
||||||
|
panic();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: rebuild windows toolchain to make this unnecessary:
|
// TODO: rebuild windows toolchain to make this unnecessary:
|
||||||
|
Reference in New Issue
Block a user