@@ -2096,19 +2096,19 @@ class __SYCL_SPECIAL_CLASS local_accessor_base :
2096
2096
local_accessor_base (handler &, const detail::code_location CodeLoc =
2097
2097
detail::code_location::current ())
2098
2098
#ifdef __SYCL_DEVICE_ONLY__
2099
- : impl(range<AdjustedDim>{1 }) {
2100
- }
2099
+ : impl(range<AdjustedDim>{1 }){}
2101
2100
#else
2102
2101
: LocalAccessorBaseHost(range<3 >{1 , 1 , 1 }, AdjustedDim, sizeof (DataT)) {
2103
2102
detail::constructorNotification (nullptr , LocalAccessorBaseHost::impl.get (),
2104
2103
access::target::local, AccessMode, CodeLoc);
2105
2104
}
2106
2105
#endif
2107
2106
2108
- template <int Dims = Dimensions, typename = detail::enable_if_t <Dims == 0 >>
2109
- local_accessor_base (
2110
- handler &, const property_list &propList,
2111
- const detail::code_location CodeLoc = detail::code_location::current())
2107
+ template <int Dims = Dimensions,
2108
+ typename = detail::enable_if_t <Dims == 0 >>
2109
+ local_accessor_base (handler &, const property_list &propList,
2110
+ const detail::code_location CodeLoc =
2111
+ detail::code_location::current ())
2112
2112
#ifdef __SYCL_DEVICE_ONLY__
2113
2113
: impl(range<AdjustedDim>{1 }) {
2114
2114
(void )propList;
@@ -2126,8 +2126,7 @@ class __SYCL_SPECIAL_CLASS local_accessor_base :
2126
2126
range<Dimensions> AllocationSize, handler &,
2127
2127
const detail::code_location CodeLoc = detail::code_location::current())
2128
2128
#ifdef __SYCL_DEVICE_ONLY__
2129
- : impl(AllocationSize) {
2130
- }
2129
+ : impl(AllocationSize){}
2131
2130
#else
2132
2131
: LocalAccessorBaseHost(detail::convertToArrayOfN<3 , 1 >(AllocationSize),
2133
2132
AdjustedDim, sizeof (DataT)) {
@@ -2136,11 +2135,12 @@ class __SYCL_SPECIAL_CLASS local_accessor_base :
2136
2135
}
2137
2136
#endif
2138
2137
2139
- template <int Dims = Dimensions, typename = detail::enable_if_t <(Dims > 0 )>>
2140
- local_accessor_base (
2141
- range<Dimensions> AllocationSize, handler &,
2142
- const property_list &propList,
2143
- const detail::code_location CodeLoc = detail::code_location::current())
2138
+ template <int Dims = Dimensions,
2139
+ typename = detail::enable_if_t <(Dims > 0 )>>
2140
+ local_accessor_base (range<Dimensions> AllocationSize, handler &,
2141
+ const property_list &propList,
2142
+ const detail::code_location CodeLoc =
2143
+ detail::code_location::current ())
2144
2144
#ifdef __SYCL_DEVICE_ONLY__
2145
2145
: impl(AllocationSize) {
2146
2146
(void )propList;
0 commit comments