diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-09-06 14:45:52 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-09-06 14:45:52 +0000 |
commit | 87fc0556b47941b30c7b531b3aa2a5ccc6fc77bb (patch) | |
tree | a9bf16cf679df04ee241a0cdac3c0af2e5644051 /ext/Opcode | |
parent | e37c084f96963675edf9ae6df93e1677a5f83426 (diff) | |
download | perl-87fc0556b47941b30c7b531b3aa2a5ccc6fc77bb.tar.gz |
Change 31798 forgot to add the op 'once' to Opcode.pm
p4raw-id: //depot/perl@31804
Diffstat (limited to 'ext/Opcode')
-rw-r--r-- | ext/Opcode/Opcode.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/Opcode/Opcode.pm b/ext/Opcode/Opcode.pm index b12b993d7d..a92fc28d99 100644 --- a/ext/Opcode/Opcode.pm +++ b/ext/Opcode/Opcode.pm @@ -6,7 +6,7 @@ use strict; our($VERSION, @ISA, @EXPORT_OK); -$VERSION = "1.09"; +$VERSION = "1.10"; use Carp; use Exporter (); @@ -395,6 +395,8 @@ These are a hotchpotch of opcodes still waiting to be considered padsv padav padhv padany + once + rv2gv refgen srefgen ref bless -- could be used to change ownership of objects (reblessing) |