This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Trailing comma is non-standard.
authorJarkko Hietaniemi <jhi@iki.fi>
Wed, 7 Oct 2015 11:13:01 +0000 (07:13 -0400)
committerJarkko Hietaniemi <jhi@iki.fi>
Fri, 9 Oct 2015 11:05:35 +0000 (07:05 -0400)
(Found by cadvise, would have been found by gcc -pedantic.)

op.c

diff --git a/op.c b/op.c
index 399cf30..0d04858 100644 (file)
--- a/op.c
+++ b/op.c
@@ -12161,7 +12161,7 @@ enum {
                                          that's flagged OA_DANGEROUS */
     AAS_SAFE_SCALAR     = 0x100, /* produces at least one scalar SV that's
                                         not in any of the categories above */
-    AAS_DEFAV           = 0x200, /* contains just a single '@_' on RHS */
+    AAS_DEFAV           = 0x200  /* contains just a single '@_' on RHS */
 };