Skip to content

Commit f41a03f

Browse files
clang-format-fix
1 parent b800ac2 commit f41a03f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/lib/Sema/SemaSYCL.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1821,7 +1821,7 @@ class SyclKernelIntHeaderCreator : public SyclKernelFieldHandler {
18211821
getNumOpenCLParams(AccTy));
18221822
return true;
18231823
}
1824-
1824+
18251825
bool handleSyclSamplerType(FieldDecl *FD, QualType FieldTy) final {
18261826
const auto *SamplerTy = FieldTy->getAsCXXRecordDecl();
18271827
assert(SamplerTy && "Sampler type must be a C++ record type");
@@ -2705,7 +2705,7 @@ void SYCLIntegrationHeader::emit(raw_ostream &O) {
27052705
for (const KernelDesc &K : KernelDescs) {
27062706
O << " //--- " << K.Name << "\n";
27072707
O << " ";
2708-
for (const KernelParamDesc &P : K.Params)
2708+
for (const KernelParamDesc &P : K.Params)
27092709
for (unsigned J = 0; J < P.NumOpenCLParams; J++)
27102710
O << "false, ";
27112711
O << "\n";

0 commit comments

Comments
 (0)