Chris Dolan via RT wrote:
Show quoted text> <URL:
http://rt.cpan.org/Ticket/Display.html?id=21070 >
>
> On Aug 18, 2006, at 2:18 PM, via RT wrote:
>
>> It appears that ValuesAndExpressions::ProhibitNoisyQuotes doesn't like
>> overload lines, specifically:
>>
>> # Quotes used with a noisy string at line 6, column 14:
>> ValuesAndExpressions::ProhibitNoisyQuotes Severity 2
>> # use overload '""' => \&stringify, fallback => 1;
>
> This is better written as
> use overload q{""} => \&stringify, fallback => 1;
I agree, if only the overload pragma pod gets fixed. :-)
Show quoted text> Nonetheless, I've added an exception for "use overload" since it's so
> common to write as '""'. This change will appear in the next release.
>
Thanks. Updating from svn now.
-=Chris