| 1147 | } |
| 1148 | |
| 1149 | static bool astIsRhs(const Token *tok) |
| 1150 | { |
| 1151 | return tok && tok->astParent() && tok == tok->astParent()->astOperand2(); |
| 1152 | } |
| 1153 | |
| 1154 | const Token* CheckUninitVarImpl::isVariableUsage(const Token *vartok, const Library& library, bool pointer, Alloc alloc, int indirect) |
| 1155 | { |
no test coverage detected