summaryrefslogtreecommitdiffstats
path: root/test/input/Namespace-repeat-start.cxx
Commit message (Collapse)AuthorAgeFilesLines
* Output: Traverse namespace redeclarationsBrad King2015-03-231-0/+6
A namespace may be redeclared to add more members: namespace ns { void f1(); } namespace ns { void f2(); } Fix our AST traversal to consider members from all redeclarations of each namespace instead of only the canonical (first) one. Previously we generated members from later redeclarations only if they were referenced from other declarations we happened to encounter. Reported-by: Michka Popoff <michkapopoff@gmail.com>