- Timestamp:
- Jun 13, 2019, 2:32:02 PM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 6896548
- Parents:
- d60780c
- Location:
- src/AST
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Expr.cpp
rd60780c rd76f32c 9 9 // Author : Aaron B. Moss 10 10 // Created On : Wed May 15 17:00:00 2019 11 // Last Modified By : A aron B. Moss12 // Created On : Wed May 15 17:00:00 201913 // Update Count : 111 // Last Modified By : Andrew Beach 12 // Created On : Thr Jun 13 13:38:00 2019 13 // Update Count : 2 14 14 // 15 15 … … 382 382 383 383 UniqueExpr::UniqueExpr( const CodeLocation & loc, const Expr * e, unsigned long long i ) 384 : Expr( loc, e->result ), id( i ) {384 : Expr( loc, e->result ), expr( e ), id( i ) { 385 385 assert( expr ); 386 386 if ( id == -1ull ) { -
src/AST/Expr.hpp
rd60780c rd76f32c 693 693 unsigned long long id; 694 694 695 UniqueExpr( const CodeLocation & loc, const Expr * e, unsigned long long i = -1 );695 UniqueExpr( const CodeLocation & loc, const Expr * e, unsigned long long i = -1ull ); 696 696 697 697 const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
Note: See TracChangeset
for help on using the changeset viewer.