From eed4270cb71f958981ae575cc4437d84e208d268 Mon Sep 17 00:00:00 2001 From: Max Podkorytov <4273004+tenpercent@users.noreply.github.com> Date: Thu, 22 Jan 2026 03:14:00 +0000 Subject: [PATCH] Apply clang-format with -style=file --- include/ck/utility/tuple_helper.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) //