This is the mail archive of the gdb-prs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/7935] GDB doesn't know about namespace aliases


http://sourceware.org/bugzilla/show_bug.cgi?id=7935

dje at google dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
                 CC|                            |ccoutant at google dot com,
                   |                            |dje at google dot com
         Resolution|FIXED                       |---

--- Comment #5 from dje at google dot com ---
Here's another testcase.

namespace foo
{
  int x = 42;
  void baz () {}
}

namespace bar = foo;

int
main ()
{
  bar::baz ();
  return 0;
}

printing bar::x works, but setting a breakpoint on bar::baz() doesn't work.

-- 
You are receiving this mail because:
You are on the CC list for the bug.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]