diff --git a/include/ck/utility/tuple_helper.hpp b/include/ck/utility/tuple_helper.hpp index fab3539954..9fcab59b1c 100644 --- a/include/ck/utility/tuple_helper.hpp +++ b/include/ck/utility/tuple_helper.hpp @@ -46,7 +46,8 @@ __host__ __device__ constexpr auto generate_tie(F&& f, Number) // - Lambda approach: N unique lambda types for N sequences → O(N) instantiations // - Named functor approach: Single functor type → O(1) instantiation overhead // -// The detail::make_identity_sequences_impl creates a Sequence for each index I via pack expansion +// The detail::make_identity_sequences_impl creates a Sequence for each index I via pack +// expansion // // Impact: Reduces instantiation overhead for identity sequence generation (common in transforms) //