This is the mail archive of the
gdb@sourceware.org
mailing list for the GDB project.
Re: Differences between gdb-index as generated by Gold and GDB itself
> Examining the gdb-index--as produced by GDB--shows an inconsistency
> between enumerator names inside a namespace vs outside the namespace:
>
> foo::B::B_B
> vs
> B_B
You mean:
foo::B::B_B
vs.
A_A
Right?
> That is, the enumerator inside the namespace includes the enum name,
> but the enumerator outside the namespace doesn't include the enum
> name. Is this a bug in GDB?
-cary