summaryrefslogtreecommitdiff
path: root/sv.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-11-30 23:06:55 -0800
committerFather Chrysostomos <sprout@cpan.org>2011-11-30 23:06:55 -0800
commit404dce5916d5592c001751c1729b35c573c7544f (patch)
treef832817959a24889806cba6b17177e38f1ba1efb /sv.h
parente8b5ae533861095e8566b3009c22d701152aed6b (diff)
downloadperl-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.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/sv.h b/sv.h
index 7e80e77b93..dcd53f79d3 100644
--- a/sv.h
+++ b/sv.h
@@ -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)