Changeset 1e97287 for src/AST/Node.hpp


Ignore:
Timestamp:
May 15, 2019, 4:04:26 PM (5 years ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
89c2f7c9
Parents:
23f99e1
Message:

Re-created the statement section of the AST.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Node.hpp

    r23f99e1 r1e97287  
    99// Author           : Thierry Delisle
    1010// Created On       : Wed May 8 10:27:04 2019
    11 // Last Modified By : Aaron B. Moss
    12 // Last Modified On : Wed May 8 11:00:00 2019
    13 // Update Count     : 2
     11// Last Modified By : Andrew Beach
     12// Last Modified On : Wed May 15 16:02:00 2019
     13// Update Count     : 3
    1414//
    1515
     
    137137        const node_t & operator* () const { return *node; }
    138138        explicit operator bool() const { return node; }
    139         operator const node_t * const() const { return node; }
     139        operator const node_t *() const { return node; }
    140140
    141141        template<typename o_node_t>
Note: See TracChangeset for help on using the changeset viewer.