We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c7dbf4 commit fa67b92Copy full SHA for fa67b92
cores/esp8266/abi.cpp
@@ -127,7 +127,24 @@ void __throw_out_of_range(const char* str)
127
(void) str;
128
panic();
129
}
130
+
131
+void __throw_bad_cast(void)
132
+{
133
+ panic();
134
+}
135
136
+void __throw_ios_failure(const char* str)
137
138
+ (void) str;
139
140
141
142
+void __throw_runtime_error(const char* str)
143
144
145
146
147
+} // namespace std
148
149
// TODO: rebuild windows toolchain to make this unnecessary:
150
void* __dso_handle;
0 commit comments