No need for ScalarRef when using Sub::Quote
Mateu X Hunter [Thu, 15 Dec 2011 15:33:11 +0000 (08:33 -0700)]
lib/Sub/Quote.pm

index f75f79d..b5c5cc6 100644 (file)
@@ -154,10 +154,10 @@ Sub::Quote - efficient generation of subroutines via string eval
 
  quote_sub 'Silly::doggy', q{ print "woof" };
 
- my $sound; $$sound = 0;
+ my $sound = 0;
 
  quote_sub 'Silly::dagron',
-   q{ print ++$$sound % 2 ? 'burninate' : 'roar' },
+   q{ print ++$sound % 2 ? 'burninate' : 'roar' },
    { '$sound' => \$sound };
 
 And elsewhere: