summaryrefslogtreecommitdiff
path: root/sv.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2013-05-08 18:27:42 -0600
committerKarl Williamson <public@khwilliamson.com>2013-05-18 09:16:31 -0600
commita9032aa0965cbaabda35809f2e8ab7ba23161846 (patch)
tree23fc53c66d2e63143c913898d4b9cdc821292992 /sv.h
parent99f65d0199386f0b22cadf960d962ca138e8f409 (diff)
downloadperl-a9032aa0965cbaabda35809f2e8ab7ba23161846.tar.gz
Remove core references to SVt_BIND
This scalar type was unused. This is the first step in using the slot freed up for another purpose. The slot is now occupied by a temporary placeholder named SVt_DUMMY.
Diffstat (limited to 'sv.h')
-rw-r--r--sv.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/sv.h b/sv.h
index 7baef34c56..98aef7a5fa 100644
--- a/sv.h
+++ b/sv.h
@@ -22,7 +22,6 @@ in the C<svtype> enum. Test these flags with the C<SvTYPE> macro.
The types are:
SVt_NULL
- SVt_BIND (unused)
SVt_IV
SVt_NV
SVt_RV
@@ -120,7 +119,7 @@ Type flag for I/O objects. See L</svtype>.
typedef enum {
SVt_NULL, /* 0 */
- SVt_BIND, /* 1 */
+ SVt_DUMMY, /* 1 */
SVt_IV, /* 2 */
SVt_NV, /* 3 */
/* RV was here, before it was merged with IV. */