Changes in src/SynTree/Constant.cc [7f5566b:ea9b9d3]
- File:
-
- 1 edited
-
src/SynTree/Constant.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Constant.cc
r7f5566b rea9b9d3 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 : Thu Jul 30 15:18:38201513 // Update Count : 1211 // Last Modified By : Rob Schluntz 12 // Last Modified On : Wed Jun 10 14:41:03 2015 13 // Update Count : 8 14 14 // 15 15 … … 22 22 Constant::Constant( Type *type_, std::string value_ ) : type( type_ ), value( value_ ) {} 23 23 24 Constant::Constant( const Constant &other ) { 25 type = other.type->clone(); 26 value = other.value; 27 } 24 Constant::~Constant() {} 28 25 29 Constant::~Constant() { delete type; } 30 31 Constant *Constant::clone() const { assert( false ); return 0; } 26 Constant *Constant::clone() const { return 0; } 32 27 33 28 void Constant::print( std::ostream &os ) const {
Note:
See TracChangeset
for help on using the changeset viewer.