We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 880f32d commit 758068bCopy full SHA for 758068b
lib/ExtUtils/MakeMaker.pm
@@ -1336,26 +1336,6 @@ sub neatvalue {
1336
return "{ ".join(', ',@m)." }";
1337
}
1338
1339
-sub _find_magic_vstring {
1340
- my $value = shift;
1341
- return $value if $UNDER_CORE;
1342
- my $tvalue = '';
1343
- require B;
1344
- my $sv = B::svref_2object(\$value);
1345
- my $magic = ref($sv) eq 'B::PVMG' ? $sv->MAGIC : undef;
1346
- while ( $magic ) {
1347
- if ( $magic->TYPE eq 'V' ) {
1348
- $tvalue = $magic->PTR;
1349
- $tvalue =~ s/^v?(.+)$/v$1/;
1350
- last;
1351
- }
1352
- else {
1353
- $magic = $magic->MOREMAGIC;
1354
1355
1356
- return $tvalue;
1357
-}
1358
-
1359
sub selfdocument {
1360
my($self) = @_;
1361
my(@m);
0 commit comments