Running astyle [ci skip]

This commit is contained in:
orbitcowboy 2021-06-03 07:35:50 +02:00
parent 601ca6b3c5
commit a585834445
2 changed files with 7 additions and 3 deletions

View File

@ -1273,7 +1273,9 @@ public:
static MatchResult matchParameter(const ValueType *call, const ValueType *func);
static MatchResult matchParameter(const ValueType *call, const Variable *callVar, const Variable *funcVar);
bool isPrimitive() const { return (type >= ValueType::Type::BOOL); }
bool isPrimitive() const {
return (type >= ValueType::Type::BOOL);
}
bool isIntegral() const {
return (type >= ValueType::Type::BOOL && type <= ValueType::Type::UNKNOWN_INT);

View File

@ -2304,8 +2304,10 @@ const ::Type* Token::typeOf(const Token* tok, const Token** typeTok)
if (vars.empty())
return nullptr;
if (std::all_of(
vars.begin(), vars.end(), [&](const Variable* var) { return var->type() == vars.front()->type(); }))
return vars.front()->type();
vars.begin(), vars.end(), [&](const Variable* var) {
return var->type() == vars.front()->type();
}))
return vars.front()->type();
}
return nullptr;