diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-05-08 18:27:42 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-05-18 09:16:31 -0600 |
commit | a9032aa0965cbaabda35809f2e8ab7ba23161846 (patch) | |
tree | 23fc53c66d2e63143c913898d4b9cdc821292992 /sv.h | |
parent | 99f65d0199386f0b22cadf960d962ca138e8f409 (diff) | |
download | perl-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.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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. */ |