Skip to content

Commit f96e856

Browse files
committed
clang format'ed
1 parent 9129b36 commit f96e856

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sycl/test/basic_tests/use_pinned_host_memory.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ int main() {
2525
try {
2626
int Data = 0;
2727
sycl::buffer<int, 1> Buf(
28-
&Data, N, {sycl::ext::oneapi::property::buffer::use_pinned_host_memory()});
28+
&Data, N,
29+
{sycl::ext::oneapi::property::buffer::use_pinned_host_memory()});
2930
// Expected that exception is thrown
3031
return 1;
3132
} catch (sycl::invalid_object_error &E) {

0 commit comments

Comments
 (0)