Merge pull request #5666 from dearblue/annotation.1

Correct truncated `SystemStackError` [ci skip]
This commit is contained in:
Yukihiro "Matz" Matsumoto
2022-03-14 12:52:31 +09:00
committed by GitHub
+1 -1
View File
@@ -312,7 +312,7 @@ typedef struct mrb_state {
struct RClass *eException_class;
struct RClass *eStandardError_class;
struct RObject *nomem_err; /* pre-allocated NoMemoryError */
struct RObject *stack_err; /* pre-allocated SysStackError */
struct RObject *stack_err; /* pre-allocated SystemStackError */
#ifdef MRB_GC_FIXED_ARENA
struct RObject *arena_err; /* pre-allocated arena overflow error */
#endif