MCPcopy Create free account
hub / github.com/beefytech/Beef / HandleParamCustomAttributes

Method HandleParamCustomAttributes

IDEHelper/Compiler/BfMangler.cpp:2447–2460  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2445}
2446
2447void 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}

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected