Skip to content

Commit 81156b0

Browse files
[clang-tidy] Fix formatting
1 parent 8062438 commit 81156b0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

clang/unittests/ASTMatchers/ASTMatchersNodeTest.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1181,7 +1181,8 @@ TEST_P(ASTMatchersTest, PredefinedExpr) {
11811181

11821182
TEST_P(ASTMatchersTest, FileScopeAsmDecl) {
11831183
EXPECT_TRUE(matches("__asm__(\"nop\");", fileScopeAsmDecl()));
1184-
EXPECT_TRUE(notMatches("void foo() { __asm(\"mov al, 2\"); }", fileScopeAsmDecl()));
1184+
EXPECT_TRUE(
1185+
notMatches("void foo() { __asm(\"mov al, 2\"); }", fileScopeAsmDecl()));
11851186
}
11861187

11871188
TEST_P(ASTMatchersTest, AsmStatement) {

0 commit comments

Comments
 (0)