From 75bcaf01a060911795d48a9a7c1c78cd0a3176ae Mon Sep 17 00:00:00 2001 From: Ed Coyne Date: Thu, 26 May 2016 15:23:46 -0700 Subject: [PATCH] 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: