X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Size.xs;h=8236ca6ec3adff777729f2baaa2466ce72e38110;hb=5afcf5d31c29c5ec0aac38a228e37d648c454feb;hp=2eab9affe6b5b6a50f31256e2daee001cd66d35a;hpb=f3cf7e20cc2a7a5a6cc4bdfa0b14812d47111a51;p=p5sagit%2FDevel-Size.git diff --git a/Size.xs b/Size.xs index 2eab9af..8236ca6 100644 --- a/Size.xs +++ b/Size.xs @@ -845,27 +845,6 @@ CODE: } TAG;break; - case SVt_PVGV: TAG; - dbg_printf(("# Found type GV\n")); - if(!isGV_with_GP(thing)) - break; - /* Run through all the pieces and push the ones with bits */ - if (GvSV(thing)) { - av_push(pending_array, (SV *)GvSV(thing)); - } - if (GvFORM(thing)) { - av_push(pending_array, (SV *)GvFORM(thing)); - } - if (GvAV(thing)) { - av_push(pending_array, (SV *)GvAV(thing)); - } - if (GvHV(thing)) { - av_push(pending_array, (SV *)GvHV(thing)); - } - if (GvCV(thing)) { - av_push(pending_array, (SV *)GvCV(thing)); - } - TAG;break; default: TAG;break; }