Skip to content

Commit 3648d5c

Browse files
author
aidan.belton
committed
Clang-format accessor
1 parent 7009076 commit 3648d5c

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

sycl/include/sycl/accessor.hpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2096,7 +2096,8 @@ class __SYCL_SPECIAL_CLASS local_accessor_base :
20962096
local_accessor_base(handler &, const detail::code_location CodeLoc =
20972097
detail::code_location::current())
20982098
#ifdef __SYCL_DEVICE_ONLY__
2099-
: impl(range<AdjustedDim>{1}) {}
2099+
: impl(range<AdjustedDim>{1}) {
2100+
}
21002101
#else
21012102
: LocalAccessorBaseHost(range<3>{1, 1, 1}, AdjustedDim, sizeof(DataT)) {
21022103
detail::constructorNotification(nullptr, LocalAccessorBaseHost::impl.get(),
@@ -2125,7 +2126,8 @@ class __SYCL_SPECIAL_CLASS local_accessor_base :
21252126
range<Dimensions> AllocationSize, handler &,
21262127
const detail::code_location CodeLoc = detail::code_location::current())
21272128
#ifdef __SYCL_DEVICE_ONLY__
2128-
: impl(AllocationSize) {}
2129+
: impl(AllocationSize) {
2130+
}
21292131
#else
21302132
: LocalAccessorBaseHost(detail::convertToArrayOfN<3, 1>(AllocationSize),
21312133
AdjustedDim, sizeof(DataT)) {

0 commit comments

Comments
 (0)