aboutsummaryrefslogtreecommitdiffstats
path: root/src/resp.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-12-04 22:54:17 +0000
committerDavid Robillard <d@drobilla.net>2010-12-04 22:54:17 +0000
commit7bbb36a7085576958993cc6c394d5af8455a948d (patch)
tree1fc50659538100ed8ef6602e7c9e1c52acda051f /src/resp.hpp
parent6b063941f02808b5e510f8a9c102b3d361de78f3 (diff)
downloadresp-7bbb36a7085576958993cc6c394d5af8455a948d.tar.gz
resp-7bbb36a7085576958993cc6c394d5af8455a948d.tar.bz2
resp-7bbb36a7085576958993cc6c394d5af8455a948d.zip
Make resp_lift const-correct.
git-svn-id: http://svn.drobilla.net/resp/resp@294 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'src/resp.hpp')
-rw-r--r--src/resp.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/resp.hpp b/src/resp.hpp
index 0112a9e..c629cc8 100644
--- a/src/resp.hpp
+++ b/src/resp.hpp
@@ -888,9 +888,9 @@ void initLang(PEnv& penv, TEnv& tenv);
int eval(CEnv& cenv, Cursor& cursor, istream& is, bool execute);
int repl(CEnv& cenv);
-void resp_constrain(TEnv& tenv, Constraints& c, const AST* ast) throw(Error);
-AST* resp_lift(CEnv& cenv, Code& code, AST* ast) throw();
-CVal resp_compile(CEnv& cenv, const AST* ast) throw();
+void resp_constrain(TEnv& tenv, Constraints& c, const AST* ast) throw(Error);
+const AST* resp_lift(CEnv& cenv, Code& code, const AST* ast) throw();
+CVal resp_compile(CEnv& cenv, const AST* ast) throw();
bool is_form(const AST* ast, const std::string& form);
bool is_primitive(const PEnv& penv, const AST* ast);