NOLINTNEXTLINE(readability-non-const-parameter) - used as callback so we need to preserve the signature
| 1695 | |
| 1696 | // NOLINTNEXTLINE(readability-non-const-parameter) - used as callback so we need to preserve the signature |
| 1697 | static bool isVariableUsage(const Settings &settings, const Token *vartok, MathLib::bigint *value) |
| 1698 | { |
| 1699 | (void)value; |
| 1700 | return !!CheckUninitVarImpl::isVariableUsage(vartok, settings.library, true, CheckUninitVarImpl::Alloc::ARRAY); |
| 1701 | } |
| 1702 | |
| 1703 | // a Clang-built executable will crash when using the anonymous MyFileInfo later on - so put it in a unique namespace for now |
| 1704 | // see https://trac.cppcheck.net/ticket/12108 for more details |
no outgoing calls
no test coverage detected