| 91 | } |
| 92 | |
| 93 | static std::vector<LifetimeToken> setInconclusive(std::vector<LifetimeToken> v, bool b) { |
| 94 | for (LifetimeToken& x : v) |
| 95 | x.inconclusive = b; |
| 96 | return v; |
| 97 | } |
| 98 | }; |
| 99 | |
| 100 | const Token *parseCompareInt(const Token *tok, Value &true_value, Value &false_value, const std::function<std::vector<MathLib::bigint>(const Token*)>& evaluate); |
no outgoing calls
no test coverage detected