diff options
author | Tom Tromey <tom@tromey.com> | 2020-11-24 11:50:54 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2020-11-25 10:10:11 -0700 |
commit | af30c400ea2ae16742ce194f0490fec4170320d5 (patch) | |
tree | 9de52718b333a8c56784dce94062157a20d0fbbe /gdb/c-lang.h | |
parent | 21401fc7bf67dbf73f4a3eda4bcfc58fa4211584 (diff) | |
download | gdb-af30c400ea2ae16742ce194f0490fec4170320d5.zip gdb-af30c400ea2ae16742ce194f0490fec4170320d5.tar.gz gdb-af30c400ea2ae16742ce194f0490fec4170320d5.tar.bz2 |
Do not include parser-defs.h from c-lang.h
While working on another series, I noticed that c-lang.h does not need
to include parser-defs.h. This patch makes this change, and fixes up
the two .c files that needed this include. Tested by rebuilding.
gdb/ChangeLog
2020-11-25 Tom Tromey <tom@tromey.com>
* d-lang.c: Include parser-defs.h.
* rust-lang.c: Include parser-defs.h.
* c-lang.h: Do not include parser-defs.h.
Diffstat (limited to 'gdb/c-lang.h')
-rw-r--r-- | gdb/c-lang.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gdb/c-lang.h b/gdb/c-lang.h index 6c5d0d8..896f8e1 100644 --- a/gdb/c-lang.h +++ b/gdb/c-lang.h @@ -28,7 +28,6 @@ struct parser_state; #include "value.h" #include "macroexp.h" -#include "parser-defs.h" #include "gdbsupport/enum-flags.h" |