| 93 | } |
| 94 | |
| 95 | const EntityDescriptionField* EntityDescription::GetField(EntityDescriptionFieldType type) const { |
| 96 | for (const auto& field : fields) { |
| 97 | if (field.type == type) { |
| 98 | return &field; |
| 99 | } |
| 100 | } |
| 101 | return NULL; |
| 102 | } |
| 103 | |
| 104 | EntityDescriptionField* EntityDescription::GetField(EntityDescriptionFieldType type) { |
| 105 | for (auto& field : fields) { |
no outgoing calls
no test coverage detected