aboutsummaryrefslogtreecommitdiffstats
path: root/src/resp.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-08-22 19:16:28 +0000
committerDavid Robillard <d@drobilla.net>2010-08-22 19:16:28 +0000
commitb4dba561084b7ce60a8b1cfdb4e3b9de87de8d35 (patch)
tree4bdd431a1af0885a27c4c4c582bd721862629a84 /src/resp.hpp
parent6f63ae0e3e9af059c7cac3d3a29e4fb34b0b0e28 (diff)
downloadresp-b4dba561084b7ce60a8b1cfdb4e3b9de87de8d35.tar.gz
resp-b4dba561084b7ce60a8b1cfdb4e3b9de87de8d35.tar.bz2
resp-b4dba561084b7ce60a8b1cfdb4e3b9de87de8d35.zip
Simplify Engine::startFunction.
git-svn-id: http://svn.drobilla.net/resp/resp@267 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'src/resp.hpp')
-rw-r--r--src/resp.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/resp.hpp b/src/resp.hpp
index 1432b0f..5d3a93c 100644
--- a/src/resp.hpp
+++ b/src/resp.hpp
@@ -657,9 +657,9 @@ struct Engine {
virtual CFunc startFunction(
CEnv& cenv,
const std::string& name,
+ const ATuple* args,
const AType* retT,
- const ATuple& argsT,
- const vector<string> argNames=vector<string>()) = 0;
+ const ATuple& argsT) = 0;
typedef const vector<CVal> ValVec;