This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from d460293595 Revert "Mark test as unsupported until r315808 is fixed" new 3a7dad24b1 [c++2a] Implement P0306 __VA_OPT__ (Comma omission and comma [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/clang/Basic/DiagnosticLexKinds.td | 14 ++ include/clang/Lex/MacroArgs.h | 14 ++ include/clang/Lex/Preprocessor.h | 2 + include/clang/Lex/TokenLexer.h | 20 ++- include/clang/Lex/VariadicMacroSupport.h | 234 ++++++++++++++++++++++++++---- lib/Lex/MacroArgs.cpp | 10 ++ lib/Lex/PPDirectives.cpp | 67 ++++++++- lib/Lex/Preprocessor.cpp | 22 ++- lib/Lex/TokenLexer.cpp | 173 +++++++++++++++++++++- test/Preprocessor/macro_vaopt_check.cpp | 64 ++++++++ test/Preprocessor/macro_vaopt_expand.cpp | 148 +++++++++++++++++++ 11 files changed, 715 insertions(+), 53 deletions(-) create mode 100644 test/Preprocessor/macro_vaopt_check.cpp create mode 100644 test/Preprocessor/macro_vaopt_expand.cpp