summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2015-08-19 13:12:11 -0700
committerRicardo Signes <rjbs@cpan.org>2015-09-29 10:49:19 -0400
commitc29314de3abdb1d3bc527cce15a8f014a87875da (patch)
tree0d740c63f5243b367cfe578a1df032c065c78ea6 /op.c
parent7fba29668402ec06ad00dfafda69913bcbb2c1df (diff)
downloadperl-c29314de3abdb1d3bc527cce15a8f014a87875da.tar.gz
Remove experimental::lexical_topic warnings category
Diffstat (limited to 'op.c')
-rw-r--r--op.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/op.c b/op.c
index 5d396b8a18..2d9456f055 100644
--- a/op.c
+++ b/op.c
@@ -607,13 +607,6 @@ Perl_allocmy(pTHX_ const char *const name, const STRLEN len, const U32 flags)
PL_parser->in_my == KEY_state ? "state" : "my"), flags & SVf_UTF8);
}
}
- else if (len == 2 && name[1] == '_' && !is_our)
- /* diag_listed_as: Use of my $_ is experimental */
- Perl_ck_warner_d(aTHX_ packWARN(WARN_EXPERIMENTAL__LEXICAL_TOPIC),
- "Use of %s $_ is experimental",
- PL_parser->in_my == KEY_state
- ? "state"
- : "my");
/* allocate a spare slot and store the name in that slot */