gdb: small cleanup in breakpoint.c's includes
authorSimon Marchi <simon.marchi@polymtl.ca>
Sun, 13 Oct 2019 03:46:15 +0000 (23:46 -0400)
committerSimon Marchi <simon.marchi@polymtl.ca>
Sun, 13 Oct 2019 03:46:16 +0000 (23:46 -0400)
commit073bbbb058e36c60e5d30a4a25b48307429b7128
tree00ffb39035e3bd38ca54ec743c34c4b536d4ebdb
parentd6e763135663f01349ed4126b80090ea2f37fcf2
gdb: small cleanup in breakpoint.c's includes

In an attempt to reduce the number of files re-build when some headers
are touched, I ran include-what-you-use with breakpoint.c as a guinea
pig.  It revealed a few files that were unnecessary to include, which
this patch removes.

breakpoint.c uses tilde_expand from readline, hence the necessity to
include tilde.h.  AFAIK, it's fine to include just that, and not the
whole readline headers.

include-what-you-use also reported many header files that should be
included but aren't, I suppose that breakpoint.c currently includes them
indirectly.  For now I'll pretend I didn't see that :).

gdb/ChangeLog:

* breakpoint.c: Remove some includes: continuations.h, skip.h,
mi/mi-main.h, readline/readline.h, readline/history.h.  Add
include: readline/tilde.h.

-#include "skip.h"
 #include "ax-gdb.h"
 #include "dummy-frame.h"
 #include "interps.h"
@@ -69,11 +67,9 @@
 #include "thread-fsm.h"
 #include "tid-parse.h"
 #include "cli/cli-style.h"
-#include "mi/mi-main.h"

 /* readline include files */
-#include "readline/readline.h"
-#include "readline/history.h"
+#include "readline/tilde.h"

 /* readline defines this.  */
 #undef savestring

Change-Id: I88bfe9071f2f973fd84caaf04b95c33a4dfb33de
gdb/ChangeLog
gdb/breakpoint.c
This page took 0.024281 seconds and 4 git commands to generate.