diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-07-04 22:00:53 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-07-04 22:44:52 -0600 |
commit | c7995b20ccfbb4248b23aeae9fd1eab838852fcc (patch) | |
tree | 7aa68821cbd661688de01142591f6c8e381ff990 /proto.h | |
parent | 67434bafe4f2406e7c92e69013aecd446c896a9a (diff) | |
download | perl-c7995b20ccfbb4248b23aeae9fd1eab838852fcc.tar.gz |
Revert "regcomp.c: Remove unused data structure field"
This reverts commit 4b98096221966ea01c046f4f61b2dc4f60b534b9.
This continues the backing out of this topic branch. A bisect shows
that the first commit exhibiting an error is the first one in the
branch.
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -6492,6 +6492,12 @@ PERL_STATIC_INLINE IV* S_get_invlist_previous_index_addr(pTHX_ SV* invlist) #define PERL_ARGS_ASSERT_GET_INVLIST_PREVIOUS_INDEX_ADDR \ assert(invlist) +PERL_STATIC_INLINE UV* S_get_invlist_version_id_addr(pTHX_ SV* invlist) + __attribute__warn_unused_result__ + __attribute__nonnull__(pTHX_1); +#define PERL_ARGS_ASSERT_GET_INVLIST_VERSION_ID_ADDR \ + assert(invlist) + PERL_STATIC_INLINE UV* S_get_invlist_zero_addr(pTHX_ SV* invlist) __attribute__warn_unused_result__ __attribute__nonnull__(pTHX_1); |