This commit is contained in:
Henri DF 2019-11-13 14:06:47 +01:00
parent a0fa5758a6
commit bb8d6bca67

View file

@ -848,9 +848,7 @@ TableVal* RecordType::GetRecordFieldsVal(const RecordVal* rv) const
nr->Assign(0, new StringVal("record " + ft->GetName()));
else if ( ft->Tag() == TYPE_VECTOR )
{
string s = "vector[";
s += type_name(ft->YieldType()->Tag());
s += "]";
string s = fmt("vector of %s", ft->YieldType()->Tag());
nr->Assign(0, new StringVal(s));
}
else if ( ft->Tag() == TYPE_TABLE )