Skip to content

Commit

Permalink
remove trailing comma - trailing commas in enums are not legal C89, a…
Browse files Browse the repository at this point in the history
…nd update copyright
  • Loading branch information
mikehh committed Feb 8, 2011
1 parent e8cb426 commit 24478fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/parrot/pobj.h
@@ -1,5 +1,5 @@
/* pobj.h
* Copyright (C) 2001-2005, Parrot Foundation.
* Copyright (C) 2001-2011, Parrot Foundation.
* Overview:
* Parrot Object data members and flags enum
* Data Structure and Algorithms:
Expand Down Expand Up @@ -186,7 +186,7 @@ typedef enum PObj_enum {
/* True if the PMC is a class */
PObj_is_class_FLAG = POBJ_FLAG(29),
/* True if the PMC is a parrot object */
PObj_is_object_FLAG = POBJ_FLAG(30),
PObj_is_object_FLAG = POBJ_FLAG(30)

} PObj_flags;
#undef POBJ_FLAG
Expand Down

0 comments on commit 24478fd

Please sign in to comment.