| 76 | } |
| 77 | |
| 78 | static bool nonLocal(const Variable* var, bool deref) |
| 79 | { |
| 80 | return !var || (!var->isLocal() && !var->isArgument()) || (deref && var->isArgument() && var->isPointer()) || var->isStatic() || var->isExtern(); |
| 81 | } |
| 82 | |
| 83 | static bool hasVolatileCastOrVar(const Token *expr) |
| 84 | { |
no outgoing calls
no test coverage detected