[PATCH] D73334: [Format] Fix 'auto x(T&&, T &&)->F' with PAS_Left.

2020-01-24 Thread Sam McCall via Phabricator via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rGb3b68c0f802e: [Format] Fix auto x(T, T )-F with PAS_Left. (authored by sammccall). Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D73334/new/

[PATCH] D73334: [Format] Fix 'auto x(T&&, T &&)->F' with PAS_Left.

2020-01-24 Thread pre-merge checks [bot] via Phabricator via cfe-commits
merge_guards_bot added a comment. {icon times-circle color=red} Unit tests: fail. 62136 tests passed, 5 failed and 811 were skipped. failed: libc++.std/language_support/cmp/cmp_partialord/partialord.pass.cpp failed: libc++.std/language_support/cmp/cmp_strongeq/cmp.strongeq.pass.cpp

[PATCH] D73334: [Format] Fix 'auto x(T&&, T &&)->F' with PAS_Left.

2020-01-24 Thread Sam McCall via Phabricator via cfe-commits
sammccall marked an inline comment as done. sammccall added inline comments. Comment at: clang/lib/Format/TokenAnnotator.cpp:1804 // "&&(" is quite unlikely to be two successive unary "&". -if (Tok.is(tok::ampamp) && NextToken && NextToken->is(tok::l_paren)) +if

[PATCH] D73334: [Format] Fix 'auto x(T&&, T &&)->F' with PAS_Left.

2020-01-24 Thread Sam McCall via Phabricator via cfe-commits
sammccall created this revision. sammccall added a reviewer: hokein. Herald added a project: clang. Herald added a subscriber: cfe-commits. sammccall marked an inline comment as done. sammccall added inline comments. Comment at: clang/lib/Format/TokenAnnotator.cpp:1804 //