Skip to content

Commit

Permalink
implement __ignore_t constructors
Browse files Browse the repository at this point in the history
  • Loading branch information
davebayer committed Nov 22, 2024
1 parent f5d0c8a commit 55c8e4b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions libcudacxx/include/cuda/std/__tuple_dir/ignore.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ _LIBCUDACXX_BEGIN_NAMESPACE_STD

struct __ignore_t
{
__ignore_t() = default;

template <class... _Ts>
_LIBCUDACXX_HIDE_FROM_ABI constexpr __ignore_t(const _Ts&...) noexcept
{}

template <class _Tp>
_LIBCUDACXX_HIDE_FROM_ABI constexpr const __ignore_t& operator=(const _Tp&) const noexcept
{
Expand Down

0 comments on commit 55c8e4b

Please sign in to comment.