From: Wolfgang Bangerth Date: Thu, 27 Mar 2025 21:15:46 +0000 (-0600) Subject: Use the same style as in the Kokkos patch. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e008c707c638392fba2458d5a2046bab577b668d;p=dealii.git Use the same style as in the Kokkos patch. --- diff --git a/bundled/kokkos-3.7.00/core/src/Kokkos_Core_fwd.hpp b/bundled/kokkos-3.7.00/core/src/Kokkos_Core_fwd.hpp index e5a033b7f5..9e5ce3f79e 100644 --- a/bundled/kokkos-3.7.00/core/src/Kokkos_Core_fwd.hpp +++ b/bundled/kokkos-3.7.00/core/src/Kokkos_Core_fwd.hpp @@ -76,13 +76,9 @@ struct AUTO_t { constexpr const AUTO_t &operator()() const { return *this; } }; -namespace Constants { /**\brief Token to indicate that a parameter's value is to be automatically * selected */ -inline const AUTO_t AUTO = Kokkos::AUTO_t(); -} // namespace - -using Constants::AUTO; +inline constexpr AUTO_t AUTO = Kokkos::AUTO_t(); struct InvalidType {}; diff --git a/bundled/kokkos-3.7.00/core/src/Kokkos_View.hpp b/bundled/kokkos-3.7.00/core/src/Kokkos_View.hpp index d980d0ffc4..0b91176b80 100644 --- a/bundled/kokkos-3.7.00/core/src/Kokkos_View.hpp +++ b/bundled/kokkos-3.7.00/core/src/Kokkos_View.hpp @@ -528,22 +528,14 @@ constexpr bool is_assignable(const Kokkos::View& dst, namespace Kokkos { -namespace Constants { +inline constexpr Kokkos::Impl::ALL_t ALL = Kokkos::Impl::ALL_t(); -inline const Kokkos::Impl::ALL_t ALL = Kokkos::Impl::ALL_t(); - -inline const Kokkos::Impl::WithoutInitializing_t WithoutInitializing = +inline constexpr Kokkos::Impl::WithoutInitializing_t WithoutInitializing = Kokkos::Impl::WithoutInitializing_t(); -inline const Kokkos::Impl::AllowPadding_t AllowPadding = +inline constexpr Kokkos::Impl::AllowPadding_t AllowPadding = Kokkos::Impl::AllowPadding_t(); -} // namespace - -using Constants::ALL; -using Constants::WithoutInitializing; -using Constants::AllowPadding; - /** \brief Create View allocation parameter bundle from argument list. * * Valid argument list members are: