diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-11-30 23:06:55 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-11-30 23:06:55 -0800 |
commit | 404dce5916d5592c001751c1729b35c573c7544f (patch) | |
tree | f832817959a24889806cba6b17177e38f1ba1efb /sv.h | |
parent | e8b5ae533861095e8566b3009c22d701152aed6b (diff) | |
download | perl-404dce5916d5592c001751c1729b35c573c7544f.tar.gz |
Remove SvOOK_on
Nothing is using in core or on CPAN. It is not part of the API.
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -848,7 +848,6 @@ in gv.h: */ ? mg_find(sv,PERL_MAGIC_vstring) : NULL) #define SvOOK(sv) (SvFLAGS(sv) & SVf_OOK) -#define SvOOK_on(sv) ((void)SvIOK_off(sv), SvFLAGS(sv) |= SVf_OOK) #define SvOOK_off(sv) ((void)(SvOOK(sv) && sv_backoff(sv))) #define SvFAKE(sv) (SvFLAGS(sv) & SVf_FAKE) |