diff options
author | David Mitchell <davem@iabyn.com> | 2012-12-14 15:05:40 +0000 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2012-12-14 15:17:49 +0000 |
commit | 463ea2290a54ee65470ca4dd46dea0d41cfbc9dd (patch) | |
tree | 55b5470e252627f889b58a86b2bb2f29373a025f /cygwin | |
parent | b7bc7afbe074add30fdf01d619e7cfef04b07403 (diff) | |
download | perl-463ea2290a54ee65470ca4dd46dea0d41cfbc9dd.tar.gz |
make SvUPGRADE() a statement.
To guote the perldelta entry:
SvUPGRADE() is no longer an expression. Originally this macro (and its
underlying function, sv_upgrade()) were documented as boolean, although
in reality they always croaked on error and never returned false. In 2005
the documentation was updated to specify a void return value, but
SvUPGRADE() was left always returning 1 for backwards compatibility. This
has now been removed, and SvUPGRADE() is now a statement with no return
value.
So this is now a syntax error:
if (!SvUPGRADE(sv)) { croak(...); }
If you have code like that, simply replace it with
SvUPGRADE(sv);
Diffstat (limited to 'cygwin')
0 files changed, 0 insertions, 0 deletions