aboutsummaryrefslogtreecommitdiff
path: root/gdb/varobj.c
diff options
context:
space:
mode:
authorAndrew Burgess <andrew.burgess@embecosm.com>2017-10-18 19:04:17 +0100
committerAndrew Burgess <andrew.burgess@embecosm.com>2018-01-21 15:15:47 +0000
commit396af9a1527b396c251e70b5c79b5fc83fd1d7ff (patch)
treec34231aa1e089ec6e51ea26e5dcad7353cb7278b /gdb/varobj.c
parentb1b189e04cb5ea5da1cbb07bd6cceccd4d2ac969 (diff)
downloadbinutils-396af9a1527b396c251e70b5c79b5fc83fd1d7ff.zip
binutils-396af9a1527b396c251e70b5c79b5fc83fd1d7ff.tar.gz
binutils-396af9a1527b396c251e70b5c79b5fc83fd1d7ff.tar.bz2
gdb: Remove duplicate declaration of global innermost_block
The global 'innermost_block' is declared in two header files. Remove one of the declarations, and add an include of the other header into the one source file that could no longer see a declaration of 'innermost_block'. gdb/ChangeLog: * expression.h (innermost_block): Remove declaration. * varobj.c: Add 'parser-defs.h' include.
Diffstat (limited to 'gdb/varobj.c')
-rw-r--r--gdb/varobj.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/varobj.c b/gdb/varobj.c
index 01dabef..701ef66 100644
--- a/gdb/varobj.c
+++ b/gdb/varobj.c
@@ -30,6 +30,7 @@
#include "gdbthread.h"
#include "inferior.h"
#include "varobj-iter.h"
+#include "parser-defs.h"
#if HAVE_PYTHON
#include "python/python.h"