Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Constant.cc

    r17129659 re15853c  
    2525Constant::Constant( Type * type, std::string rep, double val ) : type( type ), rep( rep ), val( val ) {}
    2626
    27 Constant::Constant( const Constant &other ) : BaseSyntaxNode( other ), rep( other.rep ), val( other.val ) {
     27Constant::Constant( const Constant &other ) : rep( other.rep ), val( other.val ) {
    2828        type = other.type->clone();
    2929}
Note: See TracChangeset for help on using the changeset viewer.