| 2445 | } |
| 2446 | |
| 2447 | void BfMangler::HandleParamCustomAttributes(BfAttributeDirective* attributes, bool isReturn, bool& isConst) |
| 2448 | { |
| 2449 | while (attributes != NULL) |
| 2450 | { |
| 2451 | if (attributes->mAttributeTypeRef != NULL) |
| 2452 | { |
| 2453 | auto typeRefName = attributes->mAttributeTypeRef->ToCleanAttributeString(); |
| 2454 | if (typeRefName == "MangleConst") |
| 2455 | isConst = true; |
| 2456 | } |
| 2457 | |
| 2458 | attributes = attributes->mNextAttribute; |
| 2459 | } |
| 2460 | } |
nothing calls this directly
no test coverage detected