Skip to content

Commit

Permalink
Fix deprecated marker on a friend function
Browse files Browse the repository at this point in the history
  • Loading branch information
aprokop committed May 4, 2024
1 parent ef1d868 commit c4ab80f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/geometry/ArborX_Box.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ struct Box
// FIXME Temporary workaround until we clarify requirements on the Kokkos side.
#if defined(KOKKOS_ENABLE_OPENMPTARGET) || defined(KOKKOS_ENABLE_SYCL)
private:
friend [[deprecated]] KOKKOS_FUNCTION Box operator+(Box box, Box const &other)
[[deprecated]] friend KOKKOS_FUNCTION Box operator+(Box box, Box const &other)
{
return box += other;
}
Expand Down

0 comments on commit c4ab80f

Please sign in to comment.