diff options
author | David Robillard <d@drobilla.net> | 2009-10-06 23:36:30 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-10-06 23:36:30 +0000 |
commit | eb55f600575a855756d246f07a93381722de7bf4 (patch) | |
tree | 07abb7abd656fa52518d3ba6729c0b93494cdf3f /src | |
parent | 93ee565c32bc12ae87aa3696a7b284f8958010ce (diff) | |
download | resp-eb55f600575a855756d246f07a93381722de7bf4.tar.gz resp-eb55f600575a855756d246f07a93381722de7bf4.tar.bz2 resp-eb55f600575a855756d246f07a93381722de7bf4.zip |
Tidy.
git-svn-id: http://svn.drobilla.net/resp/tuplr@202 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'src')
-rw-r--r-- | src/tuplr.hpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/tuplr.hpp b/src/tuplr.hpp index 0141592..541e24b 100644 --- a/src/tuplr.hpp +++ b/src/tuplr.hpp @@ -621,8 +621,11 @@ Subst unify(const Constraints& c); /// Compiler backend struct Engine { - virtual CFunction startFunction(CEnv& cenv, const std::string& name, - const AType* retT, const ATuple& argsT, + virtual CFunction startFunction( + CEnv& cenv, + const std::string& name, + const AType* retT, + const ATuple& argsT, const vector<string> argNames=vector<string>()) = 0; virtual void finishFunction(CEnv& cenv, CFunction f, const AType* retT, CValue ret) = 0; |