From: Ben Morrow Date: Sun, 18 Jan 2009 07:49:07 +0000 (+0000) Subject: Run overload.pl. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9846fe22082511d6e91ccc4153eb9b5fdfd4996b;p=p5sagit%2Fp5-mst-13.2.git Run overload.pl. --- diff --git a/lib/overload/numbers.pm b/lib/overload/numbers.pm index 2e9e9ac..7c39b1c 100644 --- a/lib/overload/numbers.pm +++ b/lib/overload/numbers.pm @@ -80,6 +80,7 @@ our @names = qw# (. (.= (~~ + (-X DESTROY #; @@ -150,6 +151,7 @@ our @enums = qw# concat concat_ass smart + ftest DESTROY #; diff --git a/overload.c b/overload.c index 2f1f870..909a0ee 100644 --- a/overload.c +++ b/overload.c @@ -82,6 +82,7 @@ static const U8 PL_AMG_namelens[NofAMmeth] = { 2, 3, 3, + 3, 7 }; @@ -157,5 +158,6 @@ static const char * const PL_AMG_names[NofAMmeth] = { "(.", "(.=", "(~~", + "(-X", "DESTROY" }; diff --git a/overload.h b/overload.h index 1750585..1a1e69c 100644 --- a/overload.h +++ b/overload.h @@ -79,6 +79,7 @@ enum { concat_amg, concat_ass_amg, smart_amg, + ftest_amg, DESTROY_amg, max_amg_code /* Do not leave a trailing comma here. C9X allows it, C89 doesn't. */