Skip to content

Commit 1f82fa3

Browse files
committed
remove paren
Signed-off-by: Soumi Manna <[email protected]>
1 parent 165f537 commit 1f82fa3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/lib/Sema/SemaDeclAttr.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3484,11 +3484,11 @@ void Sema::AddSYCLIntelMaxGlobalWorkDimAttr(Decl *D,
34843484
return true;
34853485
};
34863486
if (const auto *DeclAttr = D->getAttr<SYCLIntelMaxWorkGroupSizeAttr>()) {
3487-
if ((ArgVal == 0) && !Check(DeclAttr))
3487+
if (ArgVal == 0 && !Check(DeclAttr))
34883488
return;
34893489
}
34903490
if (const auto *DeclAttr = D->getAttr<ReqdWorkGroupSizeAttr>()) {
3491-
if ((ArgVal == 0) && !Check(DeclAttr))
3491+
if (ArgVal == 0 && !Check(DeclAttr))
34923492
return;
34933493
}
34943494
}

0 commit comments

Comments
 (0)