Subject: | More bleadperl breakage: ${^WARNING_BITS} |
In bleadperl, ${^WARNING_BITS} can sometimes be undef, so the no warnings test fails.
Just change
${^WARNING_BITS} ^= ${^WARNING_BITS} ^
"\xfc\x3f\xf3\x00\x0f\xf3\xcf\xc0\xf3\xfc\x33\x03";
to
${^WARNING_BITS} = "\xfc\x3f\xf3\x00\x0f\xf3\xcf\xc0\xf3\xfc\x33\x03";
and the warning will go away.
It does the same thing.