| 417 | } |
| 418 | |
| 419 | void CheckNullPointerImpl::nullPointerError(const Token *tok) |
| 420 | { |
| 421 | ValueFlow::Value v(0); |
| 422 | v.setKnown(); |
| 423 | nullPointerError(tok, "", &v, false); |
| 424 | } |
| 425 | |
| 426 | void CheckNullPointerImpl::nullPointerError(const Token *tok, const std::string &varname, const ValueFlow::Value *value, bool inconclusive) |
| 427 | { |
no test coverage detected