Skip to content

Commit 4ee3a7b

Browse files
misccowmaxey
andauthored
Do not mark deduction guides as hidden (#6350) (#6457)
Co-authored-by: Wesley Maxey <71408887+wmaxey@users.noreply.github.com>
1 parent ef88850 commit 4ee3a7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libcudacxx/include/cuda/__utility/__basic_any/basic_any_ptr.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,12 +289,12 @@ struct _CCCL_TYPE_VISIBILITY_DEFAULT __basic_any<_Interface*>
289289

290290
_CCCL_TEMPLATE(template <class...> class _Interface, class _Super)
291291
_CCCL_REQUIRES(__is_interface<_Interface<_Super>>)
292-
_CCCL_PUBLIC_API __basic_any(_Interface<_Super>*) //
292+
_CCCL_HOST_DEVICE __basic_any(_Interface<_Super>*) //
293293
-> __basic_any<__normalized_interface_of<__basic_any<_Super>*>>;
294294

295295
_CCCL_TEMPLATE(template <class...> class _Interface, class _Super)
296296
_CCCL_REQUIRES(__is_interface<_Interface<_Super>>)
297-
_CCCL_PUBLIC_API __basic_any(_Interface<_Super> const*) //
297+
_CCCL_HOST_DEVICE __basic_any(_Interface<_Super> const*) //
298298
-> __basic_any<__normalized_interface_of<__basic_any<_Super> const*>>;
299299

300300
_LIBCUDACXX_END_NAMESPACE_CUDA

0 commit comments

Comments
 (0)