set isPointer if the type suffix is a star
This commit is contained in:
parent
0f69db00fb
commit
6c1a25883b
|
|
@ -1127,7 +1127,10 @@ private:
|
||||||
foreach (suffix; type.typeSuffixes)
|
foreach (suffix; type.typeSuffixes)
|
||||||
{
|
{
|
||||||
if (suffix.star != tok!"")
|
if (suffix.star != tok!"")
|
||||||
|
{
|
||||||
|
currentSymbol.acSymbol.isPointer = true;
|
||||||
continue;
|
continue;
|
||||||
|
}
|
||||||
else if (suffix.type)
|
else if (suffix.type)
|
||||||
lookup.breadcrumbs.insert(ASSOC_ARRAY_SYMBOL_NAME);
|
lookup.breadcrumbs.insert(ASSOC_ARRAY_SYMBOL_NAME);
|
||||||
else if (suffix.array)
|
else if (suffix.array)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue