Fix AST JSON converter type lookup

This commit is contained in:
Alex Beregszaszi
2017-05-23 23:12:40 +01:00
parent 14b22150a1
commit 604d254e8c
+1 -1
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;
}