aboutsummaryrefslogtreecommitdiffstats
path: root/src/compile.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-12-25 08:35:43 +0000
committerDavid Robillard <d@drobilla.net>2012-12-25 08:35:43 +0000
commit77d27b3495bfa98c5e13707903e4f885e8521ab6 (patch)
treeb2cadb927fd0ab8732001fc77a580f1dffcd0744 /src/compile.cpp
parent12314c754187ae246bc38aceb827bf51d1669d73 (diff)
downloadresp-77d27b3495bfa98c5e13707903e4f885e8521ab6.tar.gz
resp-77d27b3495bfa98c5e13707903e4f885e8521ab6.tar.bz2
resp-77d27b3495bfa98c5e13707903e4f885e8521ab6.zip
Support multiple ellipses in macros.
Support lambda expressions with empty argument lists. git-svn-id: http://svn.drobilla.net/resp/trunk@445 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'src/compile.cpp')
-rw-r--r--src/compile.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compile.cpp b/src/compile.cpp
index 69cce6d..9921382 100644
--- a/src/compile.cpp
+++ b/src/compile.cpp
@@ -253,6 +253,8 @@ resp_compile(CEnv& cenv, const AST* ast) throw()
else if (form == "call")
return compile_call(cenv, call);
}
+ default:
+ break;
}
cenv.err << "Attempt to compile unknown form: " << ast << endl;