Ignore:
Timestamp:
Mar 21, 2019, 4:28:14 PM (4 years ago)
Author:
Aaron Moss <a3moss@…>
Branches:
ADT, arm-eh, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
17c6c1c3, 7a8f5246
Parents:
ca59826
Message:

Fix line numbers in tests

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/BaseSyntaxNode.h

    rca59826 r17129659  
    3030
    3131  BaseSyntaxNode() { ++*new_nodes; }
    32   BaseSyntaxNode( const BaseSyntaxNode& ) { ++*new_nodes; }
     32  BaseSyntaxNode( const BaseSyntaxNode& o ) : location(o.location) { ++*new_nodes; }
    3333
    3434        virtual ~BaseSyntaxNode() {}
Note: See TracChangeset for help on using the changeset viewer.