mirror of
https://github.com/dlang-community/DCD.git
synced 2025-04-25 21:00:02 +03:00
Ensure type is not null for symbols not yet fully resolved
This commit is contained in:
parent
0dd4c78985
commit
2e84d9d76a
1 changed files with 1 additions and 1 deletions
|
@ -234,7 +234,7 @@ struct DSymbol
|
|||
|
||||
// pointers are implicitly dereferenced on members (a single layer)
|
||||
if (qualifier == SymbolQualifier.pointer
|
||||
&& this.type.qualifier != SymbolQualifier.pointer)
|
||||
&& (this.type && this.type.qualifier != SymbolQualifier.pointer))
|
||||
return type.getParts!OR(name, app, visited, onlyOne);
|
||||
|
||||
if (name is null)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue