]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit - gdb/ChangeLog
ada-lang.c: Really include "ui-out.h".
authorJoel Brobecker <brobecker@adacore.com>
Wed, 22 Jan 2014 07:42:27 +0000 (11:42 +0400)
committerJoel Brobecker <brobecker@adacore.com>
Mon, 27 Jan 2014 04:29:47 +0000 (08:29 +0400)
commit467d141bf5399b1092118981da1143523b19b896
treecc93f2e518cfbc89cb2a4a09f69f110cec2c283c
parentfb151210966ed045c124b7accfb3422d35166607
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".
gdb/ChangeLog
gdb/ada-lang.c