diff options
Diffstat (limited to 'src/c.cpp')
-rw-r--r-- | src/c.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -58,7 +58,7 @@ struct CEngine : public Engine { CVal compileLiteral(CEnv& cenv, const AST* lit); CVal compilePrimitive(CEnv& cenv, const ATuple* prim); CVal compileString(CEnv& cenv, const char* str); - + void writeModule(CEnv& cenv, std::ostream& os); const string call(CEnv& cenv, CFunc f, const AType* retT); @@ -72,11 +72,11 @@ private: string name; string text; }; - + inline Value* llVal(CVal v) { return static_cast<Value*>(v); } inline Function* llFunc(CFunc f) { return static_cast<Function*>(f); } const Type* llType(const AType* t); - + std::string out; }; |