diff options
author | Zefram <zefram@fysh.org> | 2017-11-29 20:19:20 +0000 |
---|---|---|
committer | Zefram <zefram@fysh.org> | 2017-11-29 20:19:20 +0000 |
commit | 97b4caa610942fa2caded4f8ec03ac72089cd30e (patch) | |
tree | eb4e355f7bb4909b5db236857b80af270a345a62 /ext/Opcode | |
parent | 619bbb9ab0f3cffda05f980b2ebb5bf660ad6962 (diff) | |
download | perl-97b4caa610942fa2caded4f8ec03ac72089cd30e.tar.gz |
remove useless "break" mechanism
Diffstat (limited to 'ext/Opcode')
-rw-r--r-- | ext/Opcode/Opcode.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/Opcode/Opcode.pm b/ext/Opcode/Opcode.pm index 01c495d5d6..9ebaa56c91 100644 --- a/ext/Opcode/Opcode.pm +++ b/ext/Opcode/Opcode.pm @@ -6,7 +6,7 @@ use strict; our($VERSION, @ISA, @EXPORT_OK); -$VERSION = "1.41"; +$VERSION = "1.42"; use Carp; use Exporter (); @@ -428,7 +428,7 @@ These are a hotchpotch of opcodes still waiting to be considered entergiven leavegiven enterwhen leavewhen - break continue + continue smartmatch custom -- where should this go |