Skip to content

Commit 39d0942

Browse files
committed
Fix formatting
1 parent 860a6b3 commit 39d0942

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

clang/lib/Sema/SemaDeclAttr.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4832,8 +4832,7 @@ static void handleSYCLDeviceIndirectlyCallableAttr(Sema &S, Decl *D,
48324832
static void handleSYCLRegisterNumAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
48334833
auto *VD = cast<VarDecl>(D);
48344834
if (!VD->hasGlobalStorage()) {
4835-
S.Diag(AL.getLoc(), diag::err_sycl_attribute_internal_function)
4836-
<< AL << 0;
4835+
S.Diag(AL.getLoc(), diag::err_sycl_attribute_internal_function) << AL << 0;
48374836
return;
48384837
}
48394838
if (!checkAttributeNumArgs(S, AL, 1))

0 commit comments

Comments
 (0)