| 3262 | ////////////////////////////////////////////////////////////////////////// |
| 3263 | |
| 3264 | bool BfCustomAttributes::Contains(BfTypeDef* typeDef) |
| 3265 | { |
| 3266 | for (auto& customAttr : mAttributes) |
| 3267 | if (customAttr.mType->mTypeDef->GetDefinition() == typeDef) |
| 3268 | return true; |
| 3269 | return false; |
| 3270 | } |
| 3271 | |
| 3272 | BfCustomAttribute* BfCustomAttributes::Get(BfTypeDef * typeDef) |
| 3273 | { |
no test coverage detected