Changes in src/AST/Node.hpp [dafe9e1:d76c588]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Node.hpp
rdafe9e1 rd76c588 10 10 // Created On : Wed May 8 10:27:04 2019 11 11 // Last Modified By : Andrew Beach 12 // Last Modified On : Mon Jun 3 13:26:00 201913 // Update Count : 512 // Last Modified On : Thu May 23 16:00:00 2019 13 // Update Count : 4 14 14 // 15 15 … … 107 107 ptr_base() : node(nullptr) {} 108 108 ptr_base( const node_t * n ) : node(n) { if( node ) _inc(node); } 109 ~ptr_base() { if( node ) { auto tmp = node; node = nullptr; _dec(tmp); }}109 ~ptr_base() { if( node ) _dec(node); } 110 110 111 111 ptr_base( const ptr_base & o ) : node(o.node) { … … 127 127 template<typename o_node_t> 128 128 ptr_base & operator=( const o_node_t * node ) { 129 assign( strict_dynamic_cast<const node_t *, nullptr>(node));129 assign( node ? strict_dynamic_cast<const node_t *>(node) : nullptr ); 130 130 return *this; 131 131 }
Note: See TracChangeset
for help on using the changeset viewer.