Skip to content

Commit

Permalink
Working around CUDA issue
Browse files Browse the repository at this point in the history
  • Loading branch information
hkaiser committed Jan 9, 2024
1 parent f6f0fcd commit 1f5131a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 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,7 @@ 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)...)))
noexcept(hpx::functional::is_nothrow_tag_invocable_v<Tag, Tn...>)
-> decltype(tag(HPX_FORWARD(Tn, tn)...))
// clang-format on
{
Expand Down

0 comments on commit 1f5131a

Please sign in to comment.