summaryrefslogtreecommitdiff
path: root/embed.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2013-02-13 15:13:04 -0700
committerKarl Williamson <public@khwilliamson.com>2013-07-03 19:21:17 -0600
commit4b98096221966ea01c046f4f61b2dc4f60b534b9 (patch)
treec858cf62e8cc9e4897b18ef68684be9bfe3c5c00 /embed.h
parent2c3365de8c1168f115576a4976d067e3b911c490 (diff)
downloadperl-4b98096221966ea01c046f4f61b2dc4f60b534b9.tar.gz
regcomp.c: Remove unused data structure field
This removes a field that is set in the inversion list data structure and examined just once. And that sole examiner is the function that calls the function that does the set. In other words X calls Y passing it data D. Y puts D into a structure. Upon return from Y, X looks for D in the structure. No one else looks at D. X might just as well have looked at D directly, without involving Y, and without the structure needing a space for D.
Diffstat (limited to 'embed.h')
-rw-r--r--embed.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/embed.h b/embed.h
index 0666e6f453..0382be5d5d 100644
--- a/embed.h
+++ b/embed.h
@@ -905,7 +905,6 @@
#define could_it_be_a_POSIX_class(a) S_could_it_be_a_POSIX_class(aTHX_ a)
#define get_invlist_iter_addr(a) S_get_invlist_iter_addr(aTHX_ a)
#define get_invlist_previous_index_addr(a) S_get_invlist_previous_index_addr(aTHX_ a)
-#define get_invlist_version_id_addr(a) S_get_invlist_version_id_addr(aTHX_ a)
#define get_invlist_zero_addr(a) S_get_invlist_zero_addr(aTHX_ a)
#define grok_bslash_N(a,b,c,d,e,f,g) S_grok_bslash_N(aTHX_ a,b,c,d,e,f,g)
#define handle_regex_sets(a,b,c,d,e) S_handle_regex_sets(aTHX_ a,b,c,d,e)