We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 269d661 commit 60526f4Copy full SHA for 60526f4
llvm/include/llvm/Support/SYCLPropertySetIO.h
@@ -75,14 +75,14 @@ class SYCLPropertyValue {
75
76
SYCLPropertyValue(Type Ty) {
77
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
84
- default:
85
- llvm_unreachable_internal("unsupported SYCL property type");
+ case UInt32:
+ Val = (uint32_t)0;
+ break;
+ case ByteArray:
+ Val = std::unique_ptr<std::byte, Deleter>(new std::byte[1], Deleter{});
+ default:
+ llvm_unreachable_internal("unsupported SYCL property type");
86
}
87
88
SYCLPropertyValue(uint32_t Val) : Val({Val}) {}
0 commit comments