Ignore:
Timestamp:
Jan 21, 2016, 9:25:53 PM (9 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
Children:
f3fc8cbe
Parents:
803deb1
Message:

formatting, add missing copy constructor for ConstantNode?, support gcc D (double), LD (long double) and iI (imaginary) constant suffixes, delete old examples

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/ParseNode.h

    r803deb1 r7ee14bb7  
    99// Author           : Rodolfo G. Esteves
    1010// Created On       : Sat May 16 13:28:16 2015
    11 // Last Modified By : Rob Schluntz
    12 // Last Modified On : Wed Aug 12 13:27:11 2015
    13 // Update Count     : 172
     11// Last Modified By : Peter A. Buhr
     12// Last Modified On : Fri Jan 15 17:24:30 2016
     13// Update Count     : 174
    1414//
    1515
     
    108108
    109109        ConstantNode( Type, std::string * );
     110        ConstantNode( const ConstantNode &other ) : value( *new std::string( other.value ) ) {};
    110111        ~ConstantNode() { delete &value; }
    111112
Note: See TracChangeset for help on using the changeset viewer.