diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-22 16:42:04 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-22 16:42:04 +0000 |
commit | 8312154f7760b9a177c1bc9d98e634a9f7c4f1fc (patch) | |
tree | f9d710fea6cba3e390dee0b8ff0f47033c6e1c4a /op.h | |
parent | 0776ebf09c58b6dd41e996945495d82168d1a73e (diff) | |
download | perl-8312154f7760b9a177c1bc9d98e634a9f7c4f1fc.tar.gz |
Retract #12134; reintroduce #11949: PADOFFSETs are now UVs
(suggested by Sarathy, extensions shouldn't be dabbling with
op structures, so binary backward compatibility should not be
an issue.)
p4raw-id: //depot/perl@12138
Diffstat (limited to 'op.h')
-rw-r--r-- | op.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -23,7 +23,7 @@ * which may or may not check number of children). */ -typedef U32 PADOFFSET; +typedef UV PADOFFSET; #define NOT_IN_PAD ((PADOFFSET) -1) #ifdef DEBUGGING_OPS |