We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db1a3d9 commit b41cb1bCopy full SHA for b41cb1b
1 file changed
src/features/generic_tx_parser/gtp_param_group.c
@@ -80,12 +80,10 @@ bool format_param_group(const s_field *field) {
80
const s_param_group *group = &field->param_group;
81
82
if (group->iteration_type == GROUP_ITER_BUNDLED) {
83
- // BUNDLED interleaving requires per-element formatters not yet exposed.
84
- // Fall back to sequential order until the iteration infrastructure is extended.
85
- PRINTF("GROUP: BUNDLED iteration not yet fully implemented; using SEQUENTIAL order\n");
+ PRINTF("GROUP: BUNDLED iteration unsupported\n");
+ return false;
86
}
87
88
- // SEQUENTIAL (and BUNDLED fallback): format each sub-field in declaration order.
89
for (s_group_field_node *n = group->fields; n != NULL;
90
n = (s_group_field_node *) n->node.next) {
91
if (!format_field(n->field)) {
0 commit comments