diff options
| author | Richard Biener <rguenther@suse.de> | 2019-10-02 10:22:05 +0000 |
|---|---|---|
| committer | Richard Biener <rguenth@gcc.gnu.org> | 2019-10-02 10:22:05 +0000 |
| commit | 68710ac7da29c2ed111755351936d1956f64de7c (patch) | |
| tree | 8b4edc41b3ad574458202e5b9659836569788373 /libcpp/internal.h | |
| parent | 9ff9a0a5e6edd8729f559bf86ca06f781c4da246 (diff) | |
| download | gcc-68710ac7da29c2ed111755351936d1956f64de7c.zip gcc-68710ac7da29c2ed111755351936d1956f64de7c.tar.gz gcc-68710ac7da29c2ed111755351936d1956f64de7c.tar.bz2 | |
internal.h (enum include_type): Remove trailing comma.
2019-10-02 Richard Biener <rguenther@suse.de>
* internal.h (enum include_type): Remove trailing comma.
From-SVN: r276443
Diffstat (limited to 'libcpp/internal.h')
| -rw-r--r-- | libcpp/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcpp/internal.h b/libcpp/internal.h index 90263bd..cd1a523 100644 --- a/libcpp/internal.h +++ b/libcpp/internal.h @@ -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 |
