Fix AST JSON converter type lookup

This commit is contained in:
Alex Beregszaszi 2017-05-22 19:36:41 +01:00
parent 14b22150a1
commit 604d254e8c

View File

@ -178,7 +178,7 @@ Json::Value ASTJsonConverter::inlineAssemblyIdentifierToJson(pair<assembly::Iden
tuple["declaration"] = idOrNull(_info.second.declaration);
tuple["isSlot"] = Json::Value(_info.second.isSlot);
tuple["isOffset"] = Json::Value(_info.second.isOffset);
tuple["valueSize"] = _info.second.valueSize;
tuple["valueSize"] = Json::Value(Json::LargestUInt(_info.second.valueSize));
return tuple;
}