Ignore:
Timestamp:
Oct 24, 2017, 1:09:33 PM (6 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
b45d4b2
Parents:
85d340d
git-author:
Rob Schluntz <rschlunt@…> (10/24/17 13:08:34)
git-committer:
Rob Schluntz <rschlunt@…> (10/24/17 13:09:33)
Message:

Move inferred parameters to Exception base class

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Expression.cc

    r85d340d rdf626eb  
    3535Expression::Expression() : result( 0 ), env( 0 ) {}
    3636
    37 Expression::Expression( const Expression &other ) : BaseSyntaxNode( other ), result( maybeClone( other.result ) ), env( maybeClone( other.env ) ), extension( other.extension ) {
     37Expression::Expression( const Expression &other ) : BaseSyntaxNode( other ), result( maybeClone( other.result ) ), env( maybeClone( other.env ) ), extension( other.extension ), inferParams( other.inferParams ) {
    3838}
    3939
Note: See TracChangeset for help on using the changeset viewer.