Changes in src/SynTree/Constant.cc [17129659:6c89ecc]
- File:
-
- 1 edited
-
src/SynTree/Constant.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Constant.cc
r17129659 r6c89ecc 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Wed Feb 13 18:11:22 201913 // Update Count : 3 211 // Last Modified By : Andrew Beach 12 // Last Modified On : Fri Spt 28 14:49:00 2018 13 // Update Count : 30 14 14 // 15 15 … … 25 25 Constant::Constant( Type * type, std::string rep, double val ) : type( type ), rep( rep ), val( val ) {} 26 26 27 Constant::Constant( const Constant &other ) : BaseSyntaxNode( other ),rep( other.rep ), val( other.val ) {27 Constant::Constant( const Constant &other ) : rep( other.rep ), val( other.val ) { 28 28 type = other.type->clone(); 29 29 }
Note:
See TracChangeset
for help on using the changeset viewer.