language.h: Add "symtab.h" #include

In addition to the fact that language.h depends on a number of struct
types declared in symtab.h, language.h also depends on an enumerated
type (domain_enum). So language.h should #include "symtab.h".

gdb/ChangeLog:

        * language.h: Add "symtab.h" #include.
This commit is contained in:
Joel Brobecker
2013-11-11 09:13:57 +04:00
parent 180a9db096
commit 671afef641
2 changed files with 6 additions and 0 deletions

View File

@ -23,6 +23,8 @@
#if !defined (LANGUAGE_H)
#define LANGUAGE_H 1
#include "symtab.h"
/* Forward decls for prototypes. */
struct value;
struct objfile;