diff options
Diffstat (limited to 'src/c.cpp')
-rw-r--r-- | src/c.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; |