diff mbox series

Fix build with GCC 4.3

Message ID nycvar.YFH.7.76.1910021220420.5566@zhemvz.fhfr.qr
State New
Headers show
Series Fix build with GCC 4.3 | expand

Commit Message

Richard Biener Oct. 2, 2019, 10:21 a.m. UTC
Which complains

libcpp/internal.h:129: error: comma at end of enumerator list

Committed as obvious.

Richard.
diff mbox series

Patch

Index: libcpp/internal.h
===================================================================
--- libcpp/internal.h	(revision 276439)
+++ libcpp/internal.h	(working copy)
@@ -126,7 +126,7 @@  enum include_type
    IT_MAIN,     /* main  */
 
    IT_DIRECTIVE_HWM = IT_IMPORT + 1,  /* Directives below this.  */
-   IT_HEADER_HWM = IT_DEFAULT + 1,    /* Header files below this.  */
+   IT_HEADER_HWM = IT_DEFAULT + 1     /* Header files below this.  */
   };
 
 union utoken