| 1860 | } |
| 1861 | |
| 1862 | static bool isCastToInteger(const Token* tok) |
| 1863 | { |
| 1864 | return tok && tok->isCast() && tok->valueType() && tok->valueType()->isIntegral() && tok->valueType()->pointer == 0; |
| 1865 | } |
| 1866 | |
| 1867 | static const Function* getEnclosingFunction(const Variable* var) |
| 1868 | { |
no test coverage detected