Skip to content

Commit 60526f4

Browse files
committed
Fix formatting issue
Signed-off-by: Arvind Sudarsanam <[email protected]>
1 parent 269d661 commit 60526f4

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

llvm/include/llvm/Support/SYCLPropertySetIO.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,14 @@ class SYCLPropertyValue {
7575

7676
SYCLPropertyValue(Type Ty) {
7777
switch (Ty) {
78-
case UInt32:
79-
Val = (uint32_t)0;
80-
break;
81-
case ByteArray:
82-
Val = std::unique_ptr<std::byte, Deleter>(new std::byte[1], Deleter{});
83-
break;
84-
default:
85-
llvm_unreachable_internal("unsupported SYCL property type");
78+
case UInt32:
79+
Val = (uint32_t)0;
80+
break;
81+
case ByteArray:
82+
Val = std::unique_ptr<std::byte, Deleter>(new std::byte[1], Deleter{});
83+
break;
84+
default:
85+
llvm_unreachable_internal("unsupported SYCL property type");
8686
}
8787
}
8888
SYCLPropertyValue(uint32_t Val) : Val({Val}) {}

0 commit comments

Comments
 (0)