Skip to content

Commit f22abba

Browse files
committed
Code formatting
Signed-off-by: Lukas Sommer <[email protected]>
1 parent b49f05b commit f22abba

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
@@ -2040,7 +2040,7 @@ class SyclKernelFieldChecker : public SyclKernelFieldHandler {
20402040
}
20412041

20422042
bool handleStructType(ParmVarDecl *PD, QualType ParamTy) final {
2043-
if(this->SemaSYCLRef.getLangOpts().SYCLRTCMode){
2043+
if (this->SemaSYCLRef.getLangOpts().SYCLRTCMode) {
20442044
// When compiling in RTC mode, the restriction regarding forward
20452045
// declarations doesn't apply, as we don't need the integration header.
20462046
return isValid();
@@ -6461,7 +6461,7 @@ void SYCLIntegrationHeader::emit(raw_ostream &O) {
64616461
// The rest of this function only applies to free-function kernels. However,
64626462
// in RTC mode, we do not need integration header information for
64636463
// free-function kernels, so we can return early here.
6464-
if(this->S.getLangOpts().SYCLRTCMode){
6464+
if (this->S.getLangOpts().SYCLRTCMode) {
64656465
return;
64666466
}
64676467

0 commit comments

Comments
 (0)