remove gcc compiler error using -pedantic flag:

comma at end of enumerator list

If this change causes problems, feel free to back it out.

I am trying to get gcc to complain about mixed declarations and
code since that breaks on platforms that only support C89/C90.
This commit is contained in:
Stephen Swaney 2005-01-16 17:59:23 +00:00
parent a7c3b86e87
commit c448aa60ca

@ -59,7 +59,7 @@ typedef enum PHY_PhysicsType {
/// PHY_ConstraintType enumerates all supported Constraint Types
typedef enum PHY_ConstraintType {
PHY_POINT2POINT_CONSTRAINT=1,
PHY_LINEHINGE_CONSTRAINT,
PHY_LINEHINGE_CONSTRAINT
} PHY_ConstraintType;