diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2014-05-28 11:43:53 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2014-05-28 11:44:41 -0400 |
commit | 4a3798ca1499c2c3d033682ee16e8f203e0a88cb (patch) | |
tree | f22624d23a3870a1a35d34b1470ff5b5f1e7651b /op.h | |
parent | 3800c3188602fdac4fe7ff2e93504b26827d87e3 (diff) | |
download | perl-4a3798ca1499c2c3d033682ee16e8f203e0a88cb.tar.gz |
Trailing comma in enum is not C89.
Diffstat (limited to 'op.h')
-rw-r--r-- | op.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -957,7 +957,7 @@ typedef enum { XOPe_xop_name = XOPf_xop_name, XOPe_xop_desc = XOPf_xop_desc, XOPe_xop_class = XOPf_xop_class, - XOPe_xop_peep = XOPf_xop_peep, + XOPe_xop_peep = XOPf_xop_peep } xop_flags_enum; #define XOPd_xop_name PL_op_name[OP_CUSTOM] |