diff options
Diffstat (limited to 'src/c.cpp')
-rw-r--r-- | src/c.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -47,7 +47,7 @@ struct CEngine : public Engine { CVal compileCall(CEnv& cenv, CFunc f, const ATuple* funcT, const vector<CVal>& args); CVal compileCast(CEnv& cenv, CVal v, const AST* t); - CVal compileCons(CEnv& cenv, const ATuple* type, CVal rtti, const vector<CVal>& fields); + CVal compileCons(CEnv& cenv, const char* tname, const ATuple* type, CVal rtti, const vector<CVal>& fields); CVal compileDot(CEnv& cenv, CVal tup, int32_t index); CVal compileGlobalSet(CEnv& cenv, const string& s, CVal v, const AST* t); CVal compileGlobalGet(CEnv& cenv, const string& s, CVal v); @@ -145,7 +145,7 @@ CEngine::compileCast(CEnv& cenv, CVal v, const AST* t) } CVal -CEngine::compileCons(CEnv& cenv, const ATuple* type, CVal rtti, const vector<CVal>& fields) +CEngine::compileCons(CEnv& cenv, const char* tname, const ATuple* type, CVal rtti, const vector<CVal>& fields) { return NULL; } |