Changes in src/AST/Node.hpp [490fb92e:302ef2a]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Node.hpp
r490fb92e r302ef2a 229 229 const node_t & operator* () const { _check(); return *node; } 230 230 explicit operator bool() const { _check(); return node; } 231 operator const node_t * () const { _check(); return node; } 231 operator const node_t * () const & { _check(); return node; } 232 operator const node_t * () && = delete; 232 233 233 234 const node_t * release() {
Note: See TracChangeset
for help on using the changeset viewer.