ada-lang.c: Really include "ui-out.h".
Currently, ada-lang.c pretends to include "ui-out.h" as follow: #ifdef UI_OUT #include "ui-out.h" #endif However, UI_OUT is never defined as far as I can tell. This is confirmed by rebuilding with a #error pragma inside the #ifdef UI_OUT block, which never triggers. Since this unit makes references to declarations from ui-out.h, this patch simply removes the #ifdef/#endif condition. This has not been an error so far because "ui-out.h" indirectly gets included, via one of the other .h files being included. gdb/ChangeLog: * ada-lang.c: Remove "#ifdef UI_OUT" condition for including "ui-out.h".
This commit is contained in:
parent
fb15121096
commit
467d141bf5
@ -1,3 +1,8 @@
|
||||
2014-01-27 Joel Brobecker <brobecker@adacore.com>
|
||||
|
||||
* ada-lang.c: Remove "#ifdef UI_OUT" condition for including
|
||||
"ui-out.h".
|
||||
|
||||
2014-01-27 Joel Brobecker <brobecker@adacore.com>
|
||||
|
||||
* ada-typeprint (type_is_full_subrange_of_target_type):
|
||||
|
@ -44,9 +44,7 @@
|
||||
#include "ada-lang.h"
|
||||
#include "completer.h"
|
||||
#include <sys/stat.h>
|
||||
#ifdef UI_OUT
|
||||
#include "ui-out.h"
|
||||
#endif
|
||||
#include "block.h"
|
||||
#include "infcall.h"
|
||||
#include "dictionary.h"
|
||||
|
Loading…
Reference in New Issue
Block a user