| 3382 | } |
| 3383 | |
| 3384 | bool Function::returnsPointer(const Function* function, bool unknown) |
| 3385 | { |
| 3386 | return checkReturns(function, unknown, false, [](const Token* /*defStart*/, const Token* defEnd) { |
| 3387 | return Token::simpleMatch(defEnd->previous(), "*"); |
| 3388 | }); |
| 3389 | } |
| 3390 | |
| 3391 | bool Function::returnsStandardType(const Function* function, bool unknown) |
| 3392 | { |
nothing calls this directly
no test coverage detected