diff options
author | Nobuyoshi Nakada <[email protected]> | 2025-06-05 22:22:24 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2025-06-05 22:33:02 +0900 |
commit | edaa27ce45dacd5e972781105a8e7ba4abe77c3d (patch) | |
tree | 28e5d1ba95d4d623e87078813af5d1cecfd41e27 /variable.c | |
parent | 0e0008da0f19d098a2e98902f2215c126aca0101 (diff) |
Suppress warnings by gcc-13 with `-Og`
Diffstat (limited to 'variable.c')
-rw-r--r-- | variable.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/variable.c b/variable.c index 288692ed4d..bdf18b8e4f 100644 --- a/variable.c +++ b/variable.c @@ -2248,6 +2248,8 @@ iterate_over_shapes_with_callback(rb_shape_t *shape, rb_ivar_foreach_callback_fu } } return false; + default: + UNREACHABLE_RETURN(false); } } |