From c0956254be9b356ad12cb35b68eafab2cf546028 Mon Sep 17 00:00:00 2001 From: "H.Merijn Brand" Date: Thu, 25 Sep 2008 15:59:55 +0200 Subject: [PATCH] DDump_rf () isn't used, so removed --- DDumper.pm | 6 +----- DDumper.xs | 15 --------------- 2 files changed, 1 insertion(+), 20 deletions(-) diff --git a/DDumper.pm b/DDumper.pm index 0a413ee..ce45fa2 100644 --- a/DDumper.pm +++ b/DDumper.pm @@ -6,7 +6,7 @@ use warnings; use DynaLoader (); use vars qw( $VERSION @ISA @EXPORT ); -$VERSION = "0.10"; +$VERSION = "0.11"; @ISA = qw( DynaLoader Exporter ); @EXPORT = qw( DDumper DPeek DDump ); $] >= 5.007003 and push @EXPORT, "DDump_IO"; @@ -339,10 +339,6 @@ are not meant for user space Base interface to internals for C. -=head2 DDump_rf (SV *sv) - -Dump the content of a reference variable like C. - =head1 BUGS Not all types of references are supported. diff --git a/DDumper.xs b/DDumper.xs index 8688009..81bf49a 100644 --- a/DDumper.xs +++ b/DDumper.xs @@ -66,21 +66,6 @@ DDump_XS (sv) XSRETURN (0); /* XS DDump */ -void -DDump_rf (sv) - SV *sv - - PPCODE: - SV *dd = SvROK (sv) ? _DDump (SvRV (sv)) : NULL; - - if (dd) { - ST (0) = dd; - XSRETURN (1); - } - - XSRETURN (0); - /* XS DDump reference */ - #if PERL_VERSION >= 8 void -- 2.11.4.GIT