Run overload.pl.
Ben Morrow [Sun, 18 Jan 2009 07:49:07 +0000 (07:49 +0000)]
lib/overload/numbers.pm
overload.c
overload.h

index 2e9e9ac..7c39b1c 100644 (file)
@@ -80,6 +80,7 @@ our @names = qw#
     (.
     (.=
     (~~
+    (-X
     DESTROY
 #;
 
@@ -150,6 +151,7 @@ our @enums = qw#
     concat
     concat_ass
     smart
+    ftest
     DESTROY
 #;
 
index 2f1f870..909a0ee 100644 (file)
@@ -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"
 };
index 1750585..1a1e69c 100644 (file)
@@ -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. */