Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions sycl/include/CL/sycl/multi_ptr.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -516,12 +516,6 @@ class multi_ptr<const void, Space> {
static_cast<elem_pointer_t>(m_Pointer));
}

// Implicit conversion to multi_ptr<const void, Space>
operator multi_ptr<const void, Space>() const {
using ptr_t = typename detail::PtrValueType<const void, Space>::type *;
return multi_ptr<const void, Space>(reinterpret_cast<ptr_t>(m_Pointer));
}

private:
pointer_t m_Pointer;
};
Expand Down