Changeset 01865fb


Ignore:
Timestamp:
Sep 14, 2022, 4:36:51 PM (22 months ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, ast-experimental, master, pthread-emulation
Children:
25793da
Parents:
a9762dc
Message:

New pass mixin now has 1 use

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/GenPoly/InstantiateGenericNew.cpp

    ra9762dc r01865fb  
    417417
    418418struct GenericInstantiator final :
     419                public ast::WithCodeLocation,
     420                public ast::WithConstTypeSubstitution,
     421                public ast::WithDeclsToAdd<>,
    419422                public ast::WithGuards,
    420                 public ast::WithVisitorRef<GenericInstantiator>,
    421                 public ast::WithConstTypeSubstitution,
    422                 public ast::WithDeclsToAdd<> {
     423                public ast::WithVisitorRef<GenericInstantiator>
     424{
    423425        /// Map of (generic type, parameter list) pairs
    424426        /// to concrete type instantiations.
     
    435437        /// member from an instantiation.
    436438        int memberIndex = -1;
    437         /// Keep track of the nearest location to fill in locations.
    438         CodeLocation const * location = nullptr;
    439439
    440440        GenericInstantiator() :
Note: See TracChangeset for help on using the changeset viewer.