http://llvm.org/bugs/show_bug.cgi?id=21069
Bug ID: 21069
Summary: tab expansion of variables in anonymous namespaces
broken
Product: lldb
Version: unspecified
Hardware: PC
OS: Linux
Status: NEW
Severity: normal
Priority: P
Component: All Bugs
Assignee: [email protected]
Reporter: [email protected]
Classification: Unclassified
markus@x4 ~ % cat anon_namesp.cpp
namespace { int foo (void) { return 0; } } int main() { return foo (); }
markus@x4 ~ % clang++ -g anon_namesp.cpp
markus@x4 ~ % lldb ./a.out
(lldb) target create "./a.out"
Current executable set to './a.out' (x86_64).
(lldb) b fo<press tab>
<it gets expanded to>
(lldb) b fononymous namespace)::foo()
--
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
lldb-dev mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev