mirror of
https://github.com/dlang/dmd.git
synced 2025-04-25 20:50:41 +03:00
Remove unused TypeIdentifier.originalSymbol
This commit is contained in:
parent
eb75ada85d
commit
b0d35f225f
3 changed files with 0 additions and 5 deletions
|
@ -4546,7 +4546,6 @@ class TypeIdentifier final : public TypeQualified
|
|||
{
|
||||
public:
|
||||
Identifier* ident;
|
||||
Dsymbol* originalSymbol;
|
||||
static TypeIdentifier* create(Loc loc, Identifier* ident);
|
||||
const char* kind() const override;
|
||||
TypeIdentifier* syntaxCopy() override;
|
||||
|
|
|
@ -2959,9 +2959,6 @@ extern (C++) final class TypeIdentifier : TypeQualified
|
|||
{
|
||||
Identifier ident;
|
||||
|
||||
// The symbol representing this identifier, before alias resolution
|
||||
Dsymbol originalSymbol;
|
||||
|
||||
extern (D) this(Loc loc, Identifier ident)
|
||||
{
|
||||
super(Tident, loc);
|
||||
|
|
|
@ -630,7 +630,6 @@ class TypeIdentifier final : public TypeQualified
|
|||
{
|
||||
public:
|
||||
Identifier *ident;
|
||||
Dsymbol *originalSymbol; // The symbol representing this identifier, before alias resolution
|
||||
|
||||
static TypeIdentifier *create(Loc loc, Identifier *ident);
|
||||
const char *kind() override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue