diff options
author | Nobuyoshi Nakada <[email protected]> | 2019-10-10 14:07:27 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2019-10-10 14:07:45 +0900 |
commit | a23b639050792c74cbf585aff6742c6ee3931f5f (patch) | |
tree | 23f5cf2460e3d0018d23da9fc97b54e91550eba8 /gc.c | |
parent | 9c3153e0da991e1a7df9b4cf91d6830effc79b22 (diff) |
negative_size_allocation_error never returns
Diffstat (limited to 'gc.c')
-rw-r--r-- | gc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1004,7 +1004,7 @@ void rb_gcdebug_print_obj_condition(VALUE obj); static VALUE define_final0(VALUE obj, VALUE block); -static void negative_size_allocation_error(const char *); +NORETURN(static void negative_size_allocation_error(const char *)); static void init_mark_stack(mark_stack_t *stack); |