summaryrefslogtreecommitdiff
path: root/iseq.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-04-08 15:13:37 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-04-08 15:13:37 +0900
commite474c189da8314f44659eadcbf9ca3c7d4393bfb (patch)
tree9b57a10fd42d0ea622ac8f21999e30bd04790e27 /iseq.c
parent3b1029f89417c10cf1293e1106780d1f3263d9f4 (diff)
Suppress -Wswitch warnings
Diffstat (limited to 'iseq.c')
-rw-r--r--iseq.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/iseq.c b/iseq.c
index 7c888f5a16..04887351e7 100644
--- a/iseq.c
+++ b/iseq.c
@@ -68,6 +68,8 @@ obj_resurrect(VALUE obj)
case T_HASH:
obj = rb_hash_resurrect(obj);
break;
+ default:
+ break;
}
}
return obj;