diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-01-05 09:47:09 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-01-05 12:40:28 +0000 |
commit | 0d5509eb49d621060b8aef6373628a0017faaff0 (patch) | |
tree | 2c1927f16d3cfc50979ccdfc969f18549699fe05 /proto.h | |
parent | 1daf3b755691d9e2e52b73fcc1111714808c874a (diff) | |
download | perl-0d5509eb49d621060b8aef6373628a0017faaff0.tar.gz |
Split the flags and argc parameters to S_tied_handle_method().
Previously they were combined into one numeric value, using a bitshift. This
was a false economy.
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6261,7 +6261,7 @@ STATIC SV * S_space_join_names_mortal(pTHX_ char *const *array) #define PERL_ARGS_ASSERT_SPACE_JOIN_NAMES_MORTAL \ assert(array) -STATIC OP * S_tied_handle_method(pTHX_ const char *const methname, SV **sp, IO *const io, MAGIC *const mg, const U32 flags, ...) +STATIC OP * S_tied_handle_method(pTHX_ const char *const methname, SV **sp, IO *const io, MAGIC *const mg, const U32 flags, U32 argc, ...) __attribute__nonnull__(pTHX_1) __attribute__nonnull__(pTHX_2) __attribute__nonnull__(pTHX_3) |