From 7e987536b8827bbf053fb67b55d43f7d3f851e81 Mon Sep 17 00:00:00 2001 From: "Timur A. Fatkhullin" Date: Fri, 30 May 2025 00:36:20 +0300 Subject: [PATCH] ... --- cxx/mcc_fsm.h | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/cxx/mcc_fsm.h b/cxx/mcc_fsm.h index a26a305..e43f2d9 100644 --- a/cxx/mcc_fsm.h +++ b/cxx/mcc_fsm.h @@ -328,11 +328,17 @@ protected: template struct collect_states_t; + // template + // struct collect_states_t { + // using states_t = TplT; + // }; + template struct collect_states_t, TplTs...> { - using states_t = merge_tuples_res_t, - collect_states_t, - TplTs...>; + using states_t = + merge_tuples_res_t, + typename collect_states_t::states_t, + TplTs...>; };