File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -84,8 +84,8 @@ template <typename T> class aligned_allocator {
84
84
85
85
namespace std {
86
86
template <typename T>
87
- struct allocator_traits <cl:: sycl::detail::aligned_allocator<T>> {
88
- using allocator_type = typename cl:: sycl::detail::aligned_allocator<T>;
87
+ struct allocator_traits <sycl::detail::aligned_allocator<T>> {
88
+ using allocator_type = typename sycl::detail::aligned_allocator<T>;
89
89
using value_type = typename allocator_type::value_type;
90
90
using pointer = typename allocator_type::pointer;
91
91
using const_pointer = typename allocator_type::const_pointer;
@@ -102,8 +102,8 @@ struct allocator_traits<cl::sycl::detail::aligned_allocator<T>> {
102
102
using is_always_equal = typename std::is_empty<allocator_type>::type;
103
103
104
104
template <typename U>
105
- using rebind_alloc = typename cl::sycl::detail::aligned_allocator<
106
- T>::template rebind<U>::other;
105
+ using rebind_alloc =
106
+ typename sycl::detail::aligned_allocator< T>::template rebind<U>::other;
107
107
template <typename U> using rebind_traits = allocator_traits<rebind_alloc<U>>;
108
108
109
109
static pointer allocate (allocator_type &Allocator, size_type NumElems) {
You can’t perform that action at this time.
0 commit comments