| 3270 | } |
| 3271 | |
| 3272 | BfCustomAttribute* BfCustomAttributes::Get(BfTypeDef * typeDef) |
| 3273 | { |
| 3274 | for (auto& customAttr : mAttributes) |
| 3275 | if (customAttr.mType->mTypeDef->GetDefinition() == typeDef) |
| 3276 | return &customAttr; |
| 3277 | return NULL; |
| 3278 | } |
| 3279 | |
| 3280 | BfCustomAttribute* BfCustomAttributes::Get(BfType* type) |
| 3281 | { |
no test coverage detected