GP-2262 - type id should be long

This commit is contained in:
caheckman 2022-07-22 12:55:33 -04:00
parent 2131e9d1af
commit f19df90389
3 changed files with 5 additions and 3 deletions

View file

@ -3192,6 +3192,8 @@ TypePointer *TypeFactory::getTypePointerNoDepth(int4 s,Datatype *pt,uint4 ws)
TypeArray *TypeFactory::getTypeArray(int4 as,Datatype *ao)
{
if (ao->hasStripped())
ao = ao->getStripped();
TypeArray tmp(as,ao);
return (TypeArray *) findAdd(tmp);
}