mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-04-03 05:32:24 +00:00
clang-format: Fix pointer/reference detection after decltype.
Before: [](const decltype(*a) & value) {} After: [](const decltype(*a)& value) {} llvm-svn: 210643
This commit is contained in:
parent
1918787a72
commit
4ac7de7199
@ -921,7 +921,8 @@ private:
|
||||
|
||||
if (PrevToken->is(tok::r_paren) && PrevToken->MatchingParen &&
|
||||
PrevToken->MatchingParen->Previous &&
|
||||
PrevToken->MatchingParen->Previous->is(tok::kw_typeof))
|
||||
PrevToken->MatchingParen->Previous->isOneOf(tok::kw_typeof,
|
||||
tok::kw_decltype))
|
||||
return TT_PointerOrReference;
|
||||
|
||||
if (PrevToken->Tok.isLiteral() ||
|
||||
|
@ -4740,6 +4740,7 @@ TEST_F(FormatTest, UnderstandsUsesOfStarAndAmp) {
|
||||
verifyFormat("auto a = [](int **&, int ***) {};");
|
||||
verifyFormat("auto PointerBinding = [](const char *S) {};");
|
||||
verifyFormat("typedef typeof(int(int, int)) *MyFunc;");
|
||||
verifyFormat("[](const decltype(*a) &value) {}");
|
||||
verifyIndependentOfContext("typedef void (*f)(int *a);");
|
||||
verifyIndependentOfContext("int i{a * b};");
|
||||
verifyIndependentOfContext("aaa && aaa->f();");
|
||||
|
Loading…
x
Reference in New Issue
Block a user