diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-01-05 10:58:03 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-01-05 12:40:28 +0000 |
commit | a5e1d062864552796b2edf454ea34cfb50e1eac7 (patch) | |
tree | eccaf476881d8ef807c02a9df5448191118151cc /proto.h | |
parent | 0d5509eb49d621060b8aef6373628a0017faaff0 (diff) | |
download | perl-a5e1d062864552796b2edf454ea34cfb50e1eac7.tar.gz |
The mg parameter to S_tied_handle_method() can be const MG *
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, U32 argc, ...) +STATIC OP * S_tied_handle_method(pTHX_ const char *const methname, SV **sp, IO *const io, const MAGIC *const mg, const U32 flags, U32 argc, ...) __attribute__nonnull__(pTHX_1) __attribute__nonnull__(pTHX_2) __attribute__nonnull__(pTHX_3) |