diff options
author | Abigail <abigail@abigail.be> | 2016-11-24 00:50:09 +0100 |
---|---|---|
committer | Abigail <abigail@abigail.be> | 2017-01-16 19:18:14 +0100 |
commit | d9d53e86c76a4a8cffdc6b39af3f2532373da52a (patch) | |
tree | 3529697011f00a2a97652a4a8fe5bb741f5ab4e4 /gv.c | |
parent | 7dd446ab5d25c3473fb6fef123339c48bbf1ad90 (diff) | |
download | perl-d9d53e86c76a4a8cffdc6b39af3f2532373da52a.tar.gz |
Use of inherited AUTOLOAD for non-methods will be fatal in 5.28.
Which will be 21 years after it was deprecated (5.004).
Diffstat (limited to 'gv.c')
-rw-r--r-- | gv.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1217,7 +1217,8 @@ Perl_gv_autoload_pvn(pTHX_ HV *stash, const char *name, STRLEN len, U32 flags) ) Perl_ck_warner_d(aTHX_ packWARN(WARN_DEPRECATED), "Use of inherited AUTOLOAD for non-method %" SVf - "::%" UTF8f "() is deprecated", + "::%" UTF8f "() is deprecated. This will be " + "fatal in Perl 5.28", SVfARG(packname), UTF8fARG(is_utf8, len, name)); |