| 4951 | }; |
| 4952 | |
| 4953 | static void valueFlowCondition(const ValuePtr<ConditionHandler>& handler, |
| 4954 | TokenList& tokenlist, |
| 4955 | SymbolDatabase& symboldatabase, |
| 4956 | ErrorLogger& errorLogger, |
| 4957 | const Settings& settings, |
| 4958 | const std::set<const Scope*>& skippedFunctions) |
| 4959 | { |
| 4960 | handler->beforeCondition(tokenlist, symboldatabase, errorLogger, settings, skippedFunctions); |
| 4961 | handler->afterCondition(tokenlist, symboldatabase, errorLogger, settings, skippedFunctions); |
| 4962 | } |
| 4963 | |
| 4964 | static const Token* getConditionVariable(const Token* tok) |
| 4965 | { |
no test coverage detected