We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d18b08 commit 94079e1Copy full SHA for 94079e1
clang/unittests/AST/AttrTest.cpp
@@ -187,13 +187,14 @@ TEST(Attr, AnnotateType) {
187
}
188
189
{
190
- for(auto should_have_func_type_loc: {
191
- "f_macro_attribue",
192
- "f_paren_attribute",
193
- "f_w_paren_and_attr",
194
- }) {
+ for (auto should_have_func_type_loc : {
+ "f_macro_attribue",
+ "f_paren_attribute",
+ "f_w_paren_and_attr",
+ }) {
195
llvm::errs() << "O: " << should_have_func_type_loc << "\n";
196
- const FunctionDecl *Func = getFunctionNode(AST.get(), should_have_func_type_loc);
+ const FunctionDecl *Func =
197
+ getFunctionNode(AST.get(), should_have_func_type_loc);
198
199
EXPECT_TRUE(Func->getFunctionTypeLoc());
200
0 commit comments