| 61 | //--------------------------------------------------------------------------- |
| 62 | |
| 63 | static bool isRecursiveCall(const Token* ftok) |
| 64 | { |
| 65 | return ftok->function() && ftok->function() == Scope::nestedInFunction(ftok->scope()); |
| 66 | } |
| 67 | |
| 68 | void CheckUnusedFunctions::parseTokens(const Tokenizer &tokenizer, const Settings &settings) |
| 69 | { |
no test coverage detected