Skip to content

Commit 8fe394e

Browse files
committed
Merge pull request esp8266#2062 from ed7coyne/master
Added __throw_out_of_range
2 parents 5313c56 + b8ae0c0 commit 8fe394e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

cores/esp8266/abi.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,11 @@ void __throw_logic_error(const char* str)
106106
{
107107
panic();
108108
}
109+
110+
void __throw_out_of_range(const char* str)
111+
{
112+
panic();
113+
}
109114
}
110115

111116
// TODO: rebuild windows toolchain to make this unnecessary:

0 commit comments

Comments
 (0)