From f7b54fd4c9ceff69d3d1cc93311b7cb5a841a11d Mon Sep 17 00:00:00 2001 From: Damien L-G Date: Wed, 4 Dec 2024 07:43:31 -0500 Subject: [PATCH] Trim trailing whitespaces Co-Authored-By: Thomas Padioleau --- include/experimental/__p0009_bits/utility.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/experimental/__p0009_bits/utility.hpp b/include/experimental/__p0009_bits/utility.hpp index c5cdf9d8..f7f39d60 100644 --- a/include/experimental/__p0009_bits/utility.hpp +++ b/include/experimental/__p0009_bits/utility.hpp @@ -77,12 +77,12 @@ struct integral_constant { MDSPAN_INLINE_FUNCTION_DEFAULTED constexpr integral_constant() = default; - + // These interop functions work, because other than the value_type operator - // everything of std::integral_constant works on device (defaulted functions) + // everything of std::integral_constant works on device (defaulted functions) MDSPAN_FUNCTION constexpr integral_constant(std::integral_constant) {}; - + MDSPAN_FUNCTION constexpr operator std::integral_constant() const noexcept { return std::integral_constant{}; }