aboutsummaryrefslogtreecommitdiffstats
path: root/src/resp.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-12-30 23:28:50 +0000
committerDavid Robillard <d@drobilla.net>2010-12-30 23:28:50 +0000
commiteb46c908460bd9d3563c85aff249cfa0a0b0bee2 (patch)
tree3c89b1b92e1c4a8b00cb6bdb4d3816792f8e4d3f /src/resp.hpp
parent548c6c5cf2bdc9e61eef5bdf491b3650c1daba11 (diff)
downloadresp-eb46c908460bd9d3563c85aff249cfa0a0b0bee2.tar.gz
resp-eb46c908460bd9d3563c85aff249cfa0a0b0bee2.tar.bz2
resp-eb46c908460bd9d3563c85aff249cfa0a0b0bee2.zip
Add rrst().
git-svn-id: http://svn.drobilla.net/resp/resp@384 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'src/resp.hpp')
-rw-r--r--src/resp.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/resp.hpp b/src/resp.hpp
index ba0ae4b..acd5213 100644
--- a/src/resp.hpp
+++ b/src/resp.hpp
@@ -209,6 +209,7 @@ struct ATuple : public AST {
inline const AST* fst() const { return _fst; }
inline const ATuple* rst() const { return _rst; }
inline const AST* frst() const { return _rst->_fst; }
+ inline const AST* rrst() const { return _rst->_rst; }
inline const AST* frrst() const { return _rst->_rst->_fst; }
bool empty() const { return _fst == 0 && _rst ==0; }