The skill says types_members supports updates and even gives a code example updating member_type, but the implementation registers it as read-only:
.column_text("member_type", [](const MemberEntry& row) -> std::string {
return row.member_type;
})
See src/lib/src/types_members.cpp:309.
Only member_name and comment use .column_text_rw(...). So in-place member retyping is not implemented despite the documentation
claiming it is supported.
The skill says
types_memberssupports updates and even gives a code example updatingmember_type, but the implementation registers it as read-only:See src/lib/src/types_members.cpp:309.
Only
member_nameandcommentuse.column_text_rw(...). So in-place member retyping is not implemented despite the documentationclaiming it is supported.