| 77 | void Function::setIsDestructor(bool f) { _destructor = f; } |
| 78 | void Function::setIsVirtual(bool f) { _virtualFunction = f; } |
| 79 | void Function::setIsExported(bool f) { _exported = f; } |
| 80 | void Function::setIsVariadic(bool f) { _variadic = f; } |
| 81 | void Function::setIsThumb(bool f) { _thumb = f; } |
| 82 | void Function::setLinkType(Function::eLinkType lt) { _linkType = lt; } |
no outgoing calls
no test coverage detected