aboutsummaryrefslogtreecommitdiffstats
path: root/src/c.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/c.cpp')
-rw-r--r--src/c.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/c.cpp b/src/c.cpp
index d83ff95..f172b65 100644
--- a/src/c.cpp
+++ b/src/c.cpp
@@ -42,7 +42,6 @@ struct CEngine : public Engine {
}
CFunc startFn(CEnv& cenv, const string& name, const ATuple* args, const ATuple* type);
- void pushFnArgs(CEnv& cenv, const ATuple* prot, const ATuple* type, CFunc f);
void finishFn(CEnv& cenv, CFunc f, CVal ret, const AST* retT);
void eraseFn(CEnv& cenv, CFunc f);
@@ -63,6 +62,8 @@ struct CEngine : public Engine {
const string call(CEnv& cenv, CFunc f, const AST* retT);
private:
+ void pushFnArgs(CEnv& cenv, const ATuple* prot, const ATuple* type, CFunc f);
+
typedef string Type;
typedef string Value;