diff options
author | Ben Morrow <ben@morrow.me.uk> | 2009-10-24 14:58:33 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2009-11-01 16:18:04 +0100 |
commit | d9151963660fed8e24ee268776a238e1d9ae6802 (patch) | |
tree | 896239bd25faa0892895b7fa2e78946964133147 /overload.c | |
parent | 7d0994e057b3340e9b0be219a07a5992e313f0f0 (diff) | |
download | perl-d9151963660fed8e24ee268776a238e1d9ae6802.tar.gz |
Add a new overload type, "qr".
Diffstat (limited to 'overload.c')
-rw-r--r-- | overload.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/overload.c b/overload.c index 909a0ee529..4a9c94b153 100644 --- a/overload.c +++ b/overload.c @@ -83,6 +83,7 @@ static const U8 PL_AMG_namelens[NofAMmeth] = { 3, 3, 3, + 3, 7 }; @@ -159,5 +160,6 @@ static const char * const PL_AMG_names[NofAMmeth] = { "(.=", "(~~", "(-X", + "(qr", "DESTROY" }; |