summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2011-01-05 10:58:03 +0000
committerNicholas Clark <nick@ccl4.org>2011-01-05 12:40:28 +0000
commita5e1d062864552796b2edf454ea34cfb50e1eac7 (patch)
treeeccaf476881d8ef807c02a9df5448191118151cc /proto.h
parent0d5509eb49d621060b8aef6373628a0017faaff0 (diff)
downloadperl-a5e1d062864552796b2edf454ea34cfb50e1eac7.tar.gz
The mg parameter to S_tied_handle_method() can be const MG *
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index 8cc037933e..86337af584 100644
--- a/proto.h
+++ b/proto.h
@@ -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)