Changeset d73e667 for src/AST/Type.hpp


Ignore:
Timestamp:
Mar 25, 2025, 12:24:20 PM (3 weeks ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
446dde5, 8ef0bf7
Parents:
399074a (diff), b5978ca (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/AST/Type.hpp

    r399074a rd73e667  
    383383        const Type * accept( Visitor & v ) const override { return v.visit( this ); }
    384384
    385         std::string typeString() const {
    386                 if (formal_usage > 0) return std::string("_") + std::to_string(formal_usage) + "_" + std::to_string(expr_id) + "_" + name;
    387                 else return name;
    388         }
     385        std::string typeString() const;
    389386private:
    390387        TypeInstType * clone() const override { return new TypeInstType{ *this }; }
Note: See TracChangeset for help on using the changeset viewer.