| 130 | } |
| 131 | |
| 132 | void StructDef::addFields(FieldDef* field, int index) |
| 133 | { |
| 134 | if (index == -1) |
| 135 | m_fields.append(field); |
| 136 | |
| 137 | m_fields.insert(index, field); |
| 138 | } |
| 139 | |
| 140 | void StructDef::clearFields() |
| 141 | { |
nothing calls this directly
no outgoing calls
no test coverage detected