2004-06-02 Albert Chin-A-Young <china@thewrittenword.com>
authorAndrew Cagney <cagney@redhat.com>
Wed, 2 Jun 2004 21:01:55 +0000 (21:01 +0000)
committerAndrew Cagney <cagney@redhat.com>
Wed, 2 Jun 2004 21:01:55 +0000 (21:01 +0000)
Committed by Andrew Cagney.
* gdb/dictionary.c, gdb/gdbtypes.h: Remove trailing comma
after last enum constant to avoid error from IBM C
compiler.

gdb/ChangeLog
gdb/dictionary.c
gdb/gdbtypes.h

index 26ce8b855698afd24b312476e3e1913ed8c216ba..e1b2b2a3f1a503f6ca06ff6064a79dcaee00bdd4 100644 (file)
@@ -1,3 +1,10 @@
+2004-06-02  Albert Chin-A-Young  <china@thewrittenword.com>
+
+       Committed by Andrew Cagney.
+       * gdb/dictionary.c, gdb/gdbtypes.h: Remove trailing comma
+       after last enum constant to avoid error from IBM C
+       compiler.
+
 2004-06-02  Jim Blandy  <jimb@redhat.com>
 
        * ppc-linux-nat.c (store_register, fetch_register): Rename 'mess'
index a5f1a0e89e395162c0145c66a3feb050287ce916..09851ef69f182be75b1c39a7d10276509f39c849 100644 (file)
@@ -99,7 +99,7 @@ enum dict_type
     /* Symbols are stored in a fixed-size array.  */
     DICT_LINEAR,
     /* Symbols are stored in an expandable array.  */
-    DICT_LINEAR_EXPANDABLE,
+    DICT_LINEAR_EXPANDABLE
   };
 
 /* The virtual function table.  */
index a1141d72e255c2e814894a19d9a1ed8779b2c5aa..c0696ad969e58fd15b97794dbe14cb1d7fa03b16 100644 (file)
@@ -136,7 +136,7 @@ enum type_code
     TYPE_CODE_TEMPLATE,                /* C++ template */
     TYPE_CODE_TEMPLATE_ARG,    /* C++ template arg */
 
-    TYPE_CODE_NAMESPACE,       /* C++ namespace.  */
+    TYPE_CODE_NAMESPACE                /* C++ namespace.  */
   };
 
 /* For now allow source to use TYPE_CODE_CLASS for C++ classes, as an
This page took 0.029475 seconds and 4 git commands to generate.