diff options
author | David Robillard <d@drobilla.net> | 2012-12-15 00:15:35 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-12-15 00:15:35 +0000 |
commit | 8148e755d3f587e6c212ba90efc151ea07de2703 (patch) | |
tree | 81f6276ebaf62bb4ecebf9b9c8cb6e1e15ed1aec /src/resp.hpp | |
parent | 2918c1a6ce05325b18874193588b58b40f2691f5 (diff) | |
download | resp-8148e755d3f587e6c212ba90efc151ea07de2703.tar.gz resp-8148e755d3f587e6c212ba90efc151ea07de2703.tar.bz2 resp-8148e755d3f587e6c212ba90efc151ea07de2703.zip |
Add Subst::augment function.
git-svn-id: http://svn.drobilla.net/resp/trunk@438 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'src/resp.hpp')
-rw-r--r-- | src/resp.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/resp.hpp b/src/resp.hpp index 8cdb75e..f4689a0 100644 --- a/src/resp.hpp +++ b/src/resp.hpp @@ -534,6 +534,7 @@ struct Subst : public list<Constraint> { if (s && t) { assert(s != t); push_back(Constraint(s, t)); } } static Subst compose(const Subst& delta, const Subst& gamma); + void augment(const Subst& subst); void add(const AST* from, const AST* to) { assert(from && to); push_back(Constraint(from, to)); |