Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SymTab/Indexer.h

    r0ac366b r78d69da7  
    4646                        /// non-null if this declaration is deleted
    4747                        BaseSyntaxNode * deleteStmt = nullptr;
     48
     49                        // NOTE: shouldn't need either of these constructors, but gcc-4 does not properly support initializer lists with default members.
     50                        IdData() = default;
     51                        IdData( DeclarationWithType * id, Expression * baseExpr, BaseSyntaxNode * deleteStmt ) : id( id ), baseExpr( baseExpr ), deleteStmt( deleteStmt ) {}
    4852
    4953                        Expression * combine() const;
Note: See TracChangeset for help on using the changeset viewer.