Skip to content

Commit 6d35831

Browse files
committed
Add missing using base_t statement
Signed-off-by: JackAKirk <[email protected]>
1 parent a337db6 commit 6d35831

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

sycl/include/sycl/ext/oneapi/device_global/device_global.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,7 @@ class
282282
: public detail::device_global_base<T, detail::properties_t<Props...>> {
283283

284284
using property_list_t = detail::properties_t<Props...>;
285+
using base_t = detail::device_global_base<T, property_list_t>;
285286

286287
public:
287288
using element_type = std::remove_extent_t<T>;
@@ -316,6 +317,7 @@ class
316317
: public detail::device_global_base<T, detail::properties_t<Props...>> {
317318

318319
using property_list_t = detail::properties_t<Props...>;
320+
using base_t = detail::device_global_base<T, property_list_t>;
319321

320322
public:
321323
using element_type = std::remove_extent_t<T>;

0 commit comments

Comments
 (0)