From d3708205163f784343733661d9fa01ff14f8b751 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 15 Dec 2012 21:48:21 +0000 Subject: Write forward declarations for all types and functions for mutual and/or nested recursion. git-svn-id: http://svn.drobilla.net/resp/trunk@440 ad02d1e2-f140-0410-9f75-f8b11f17cedd --- src/c.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/c.cpp') diff --git a/src/c.cpp b/src/c.cpp index b2d17d1..934100c 100644 --- a/src/c.cpp +++ b/src/c.cpp @@ -41,6 +41,7 @@ struct CEngine : public Engine { { } + CFunc compileProt(CEnv& cenv, const string& name, const ATuple* args, const ATuple* type); CFunc startFn(CEnv& cenv, const string& name, const ATuple* args, const ATuple* type); void finishFn(CEnv& cenv, CFunc f, CVal ret, const AST* retT); void eraseFn(CEnv& cenv, CFunc f); @@ -174,6 +175,12 @@ CEngine::compileType(CEnv& cenv, const std::string& name, const AST* expr) return NULL; } +CFunc +CEngine::compileProt(CEnv& cenv, const std::string& name, const ATuple* args, const ATuple* type) +{ + return NULL; +} + CFunc CEngine::startFn(CEnv& cenv, const std::string& name, const ATuple* args, const ATuple* type) { -- cgit v1.2.1