Skip to content

Commit

Permalink
Merge pull request #6409 from STEllAR-GROUP/fixing_6407
Browse files Browse the repository at this point in the history
Working around CUDA issue
  • Loading branch information
hkaiser authored Jan 12, 2024
2 parents 7b35448 + ce14789 commit e8b7598
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion libs/core/properties/include/hpx/properties/property.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Copyright (c) 2020 ETH Zurich
// Copyright (c) 2023-2024 Hartmut Kaiser
//
// SPDX-License-Identifier: BSL-1.0
// Distributed under the Boost Software License, Version 1.0. (See accompanying
Expand All @@ -22,7 +23,9 @@ namespace hpx::experimental {
template <typename Tag, typename... Tn>
friend constexpr HPX_FORCEINLINE auto tag_fallback_invoke(
prefer_t, Tag tag, Tn&&... tn)
noexcept(noexcept(tag(HPX_FORWARD(Tn, tn)...)))
#if !defined(HPX_CUDA_VERSION)
noexcept(hpx::functional::is_nothrow_tag_invocable_v<Tag, Tn&&...>)
#endif
-> decltype(tag(HPX_FORWARD(Tn, tn)...))
// clang-format on
{
Expand Down

0 comments on commit e8b7598

Please sign in to comment.