diff options
author | Rafael Garcia-Suarez <rgs@consttype.org> | 2010-11-06 16:06:34 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2010-11-06 16:06:34 +0100 |
commit | 27df23140def00922ce186da623f2c3724e0b36a (patch) | |
tree | eac26f2e71784b5eff2236bc52c9e2308ae47c5e | |
parent | 0b06a75363d6bf6cd309efd90b7182a041a1f4f1 (diff) | |
download | perl-27df23140def00922ce186da623f2c3724e0b36a.tar.gz |
Add new ops in Opcode, so it does not warn at compilation
The ops are the recently-introduced reach, rvalues, rkeys and transr.
-rw-r--r-- | ext/Opcode/Opcode.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/Opcode/Opcode.pm b/ext/Opcode/Opcode.pm index 3776324dc7..0766940f27 100644 --- a/ext/Opcode/Opcode.pm +++ b/ext/Opcode/Opcode.pm @@ -6,7 +6,7 @@ use strict; our($VERSION, @ISA, @EXPORT_OK); -$VERSION = "1.16"; +$VERSION = "1.17"; use Carp; use Exporter (); @@ -311,7 +311,7 @@ invert_opset function. rv2av aassign aelem aelemfast aslice av2arylen rv2hv helem hslice each values keys exists delete aeach akeys avalues - boolkeys + boolkeys reach rvalues rkeys preinc i_preinc predec i_predec postinc i_postinc postdec i_postdec int hex oct abs pow multiply i_multiply divide i_divide @@ -325,7 +325,7 @@ invert_opset function. substr vec stringify study pos length index rindex ord chr - ucfirst lcfirst uc lc quotemeta trans chop schop chomp schomp + ucfirst lcfirst uc lc quotemeta trans transr chop schop chomp schomp match split qr |