From eb46c908460bd9d3563c85aff249cfa0a0b0bee2 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 30 Dec 2010 23:28:50 +0000 Subject: Add rrst(). git-svn-id: http://svn.drobilla.net/resp/resp@384 ad02d1e2-f140-0410-9f75-f8b11f17cedd --- src/resp.hpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/resp.hpp') 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; } -- cgit v1.2.1