1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-06 05:21:22 +03:00

Merge pull request #2062 from ed7coyne/master

Added __throw_out_of_range
This commit is contained in:
Ivan Grokhotkov 2016-06-01 10:55:52 +08:00
commit 8fe394ea77

View File

@ -106,6 +106,11 @@ void __throw_logic_error(const char* str)
{
panic();
}
void __throw_out_of_range(const char* str)
{
panic();
}
}
// TODO: rebuild windows toolchain to make this unnecessary: