From 75bcaf01a060911795d48a9a7c1c78cd0a3176ae Mon Sep 17 00:00:00 2001 From: Ed Coyne Date: Thu, 26 May 2016 15:23:46 -0700 Subject: [PATCH 1/2] Added __throw_out_of_range --- cores/esp8266/abi.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cores/esp8266/abi.cpp b/cores/esp8266/abi.cpp index 9143b5bec..3d1586076 100644 --- a/cores/esp8266/abi.cpp +++ b/cores/esp8266/abi.cpp @@ -106,6 +106,11 @@ void __throw_logic_error(const char* str) { panic(); } + +void __throw_out_of_range(const ohar* str) +{ + panic(); +} } // TODO: rebuild windows toolchain to make this unnecessary: From b8ae0c0792c85199da34e4d239ec84f69b8bfa4e Mon Sep 17 00:00:00 2001 From: Ed Coyne Date: Thu, 26 May 2016 15:28:29 -0700 Subject: [PATCH 2/2] Fixed typo --- cores/esp8266/abi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cores/esp8266/abi.cpp b/cores/esp8266/abi.cpp index 3d1586076..2cb6889d8 100644 --- a/cores/esp8266/abi.cpp +++ b/cores/esp8266/abi.cpp @@ -107,7 +107,7 @@ void __throw_logic_error(const char* str) panic(); } -void __throw_out_of_range(const ohar* str) +void __throw_out_of_range(const char* str) { panic(); }