Fix testrunner

This commit is contained in:
Daniel Marjamäki 2020-01-18 12:29:03 +01:00
parent 269d21e972
commit cefd7fb33f
2 changed files with 6 additions and 3 deletions

View File

@ -214,6 +214,9 @@ static bool getDimensionsEtc(const Token * const arrayToken, const Settings *set
Dimension dim;
dim.known = value->isKnown();
dim.tok = nullptr;
int typeSize = array->valueType()->typeSize(*settings);
if (typeSize == 0)
return false;
dim.num = value->intvalue / array->valueType()->typeSize(*settings);
dimensions->emplace_back(dim);
}

View File

@ -6129,10 +6129,10 @@ std::string ValueType::dump() const
MathLib::bigint ValueType::typeSize(const cppcheck::Platform &platform) const
{
if (pointer)
return platform.sizeof_pointer;
//if (pointer)
// return platform.sizeof_pointer;
if (typeScope && typeScope->definedType)
if (typeScope && typeScope->definedType && typeScope->definedType->sizeOf)
return typeScope->definedType->sizeOf;
switch (type) {