From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4059 invoked by alias); 18 Jan 2010 21:56:20 -0000 Received: (qmail 4044 invoked by uid 48); 18 Jan 2010 21:56:20 -0000 Date: Mon, 18 Jan 2010 21:56:00 -0000 Message-ID: <20100118215620.4043.qmail@sourceware.org> From: "tromey at redhat dot com" To: gdb-prs@sourceware.org In-Reply-To: <20021218102801.8000.carlton@math.stanford.edu> References: <20021218102801.8000.carlton@math.stanford.edu> Reply-To: sourceware-bugzilla@sourceware.org Subject: [Bug c++/8000] GDB doesn't know about enum constants in namespaces X-Bugzilla-Reason: CC Mailing-List: contact gdb-prs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-prs-owner@sourceware.org X-SW-Source: 2010-q1/txt/msg00030.txt.bz2 ------- Additional Comments From tromey at redhat dot com 2010-01-18 21:56 ------- Still a bug. Here's a sample program: namespace ns { enum x { A, B, C }; }; int main() { ns::x a = ns::A; return a; } (gdb) p a $2 = A (gdb) p A $3 = A (gdb) p ns::A No symbol "A" in namespace "ns". -- What |Removed |Added ---------------------------------------------------------------------------- Last reconfirmed|0000-00-00 00:00:00 |2010-01-18 21:56:20 date| | http://sourceware.org/bugzilla/show_bug.cgi?id=8000 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.