NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Re: Help needed on a new 5.10 warning (Score:1)
$bal = qr[(?:(?>[^()]+)|\((??{ $bal })\))*]; # ()-balanced$cast = qr[(?:\(\s*SV\s*\*\s*\)\s*)?]; # Optional (SV*) cast$size = qr[,\s* (??{ $bal }) ]x; # Third arg (to setpvn)Again
Re: Help needed on a new 5.10 warning (Score:1)
Thanks for the advice. I eventually tracked it down to Regexp::Common and was able to remove the warning if I just imported the number specific regexes:
Reply to This
Parent