[PATCH] D146760: [clang-format] Treat NTTP default values as expressions
Emilia Dreamer via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Sat Mar 25 18:43:01 PDT 2023
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGbb4f6c4dca98: [clang-format] Treat NTTP default values as expressions (authored by rymiel).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D146760/new/
https://reviews.llvm.org/D146760
Files:
clang/lib/Format/TokenAnnotator.cpp
clang/unittests/Format/TokenAnnotatorTest.cpp
Index: clang/unittests/Format/TokenAnnotatorTest.cpp
===================================================================
--- clang/unittests/Format/TokenAnnotatorTest.cpp
+++ clang/unittests/Format/TokenAnnotatorTest.cpp
@@ -253,6 +253,14 @@
"};");
ASSERT_EQ(Tokens.size(), 30u) << Tokens;
EXPECT_TOKEN(Tokens[14], tok::ampamp, TT_BinaryOperator);
+
+ Tokens = annotate("template <bool B = C && D> struct S {};");
+ ASSERT_EQ(Tokens.size(), 15u) << Tokens;
+ EXPECT_TOKEN(Tokens[6], tok::ampamp, TT_BinaryOperator);
+
+ Tokens = annotate("template <typename T, bool B = C && D> struct S {};");
+ ASSERT_EQ(Tokens.size(), 18u) << Tokens;
+ EXPECT_TOKEN(Tokens[9], tok::ampamp, TT_BinaryOperator);
}
TEST_F(TokenAnnotatorTest, UnderstandsUsesOfPlusAndMinus) {
Index: clang/lib/Format/TokenAnnotator.cpp
===================================================================
--- clang/lib/Format/TokenAnnotator.cpp
+++ clang/lib/Format/TokenAnnotator.cpp
@@ -1722,6 +1722,11 @@
return false;
}
+ // This is the default value of a non-template type parameter, so treat
+ // it as an expression.
+ if (Contexts.back().ContextKind == tok::less)
+ return true;
+
Tok = Tok->MatchingParen;
if (!Tok)
return false;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D146760.508365.patch
Type: text/x-patch
Size: 1321 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230326/642c3b9b/attachment.bin>
More information about the cfe-commits
mailing list