[Lldb-commits] [PATCH] D44613: Support template template parameters

2018-04-02 Thread Frederic Riss via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL328984: Support template template parameters (authored by friss, committed by ). Herald added a subscriber: llvm-commits. Repository: rL LLVM https://reviews.llvm.org/D44613 Files: lldb/trunk/includ

[Lldb-commits] [PATCH] D44613: Support template template parameters

2018-04-02 Thread Greg Clayton via Phabricator via lldb-commits
clayborg accepted this revision. clayborg added a comment. This revision is now accepted and ready to land. Sorry for the delay. https://reviews.llvm.org/D44613 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/

[Lldb-commits] [PATCH] D44613: Support template template parameters

2018-04-01 Thread Frederic Riss via Phabricator via lldb-commits
friss added a comment. Ping https://reviews.llvm.org/D44613 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [PATCH] D44613: Support template template parameters

2018-03-23 Thread Frederic Riss via Phabricator via lldb-commits
friss updated this revision to Diff 139619. friss added a comment. Use LLVM macro for fallthrough https://reviews.llvm.org/D44613 Files: include/lldb/Symbol/ClangASTContext.h packages/Python/lldbsuite/test/lang/cpp/template/TestTemplateArgs.py packages/Python/lldbsuite/test/lang/cpp/templ

[Lldb-commits] [PATCH] D44613: Support template template parameters

2018-03-19 Thread Frederic Riss via Phabricator via lldb-commits
friss added inline comments. Comment at: source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp:2043 +is_template_template_argument = true; +[[clang::fallthrough]]; case DW_TAG_template_type_parameter: clayborg wrote: > Shouldn't we be using a #define

[Lldb-commits] [PATCH] D44613: Support template template parameters

2018-03-19 Thread Greg Clayton via Phabricator via lldb-commits
clayborg added inline comments. Comment at: source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp:2043 +is_template_template_argument = true; +[[clang::fallthrough]]; case DW_TAG_template_type_parameter: Shouldn't we be using a #define so this works

[Lldb-commits] [PATCH] D44613: Support template template parameters

2018-03-18 Thread Frederic Riss via Phabricator via lldb-commits
friss created this revision. friss added reviewers: clayborg, jingham. Herald added a subscriber: JDevlieghere. We would fail to resolve (and thus display the value of) any templated type which contained a template template argument even though we don't really use template arguments. This patch a