develooper Front page | perl.perl5.porters | Postings from February 2007

Re: perl-30145 (was Re: Future Perl development)

Thread Previous | Thread Next
From:
Rafael Garcia-Suarez
Date:
February 7, 2007 01:05
Subject:
Re: perl-30145 (was Re: Future Perl development)
Message ID:
b77c1dce0702070105t47f3ebd3y40e138c00e64783a@mail.gmail.com
On 07/02/07, Nicholas Clark <nick@ccl4.org> wrote:
> I think I'd argue that its C is buggy:
>
>         /* drop-through if not an object or method not found  */
>         switch SvTYPE(SvRV(root)) {
>
>
> but really also our macros should be wrapped in () to avoid (other)
> precedence issues. Currently we have
>
> #define SvTYPE(sv)      (svtype)((sv)->sv_flags & SVTYPEMASK)
>
> (also in blead) which really should be
>
> #define SvTYPE(sv)      ((svtype)((sv)->sv_flags & SVTYPEMASK))
>
> With that change to sv.h it passes all tests for me.

I just applied that to blead. (#30153)

Thread Previous | Thread Next


nntp.perl.org: Perl Programming lists via nntp and http.
Comments to Ask Bjørn Hansen at ask@perl.org | Group listing | About