From d97f3089b257754741326bda377103d2c99f263e Mon Sep 17 00:00:00 2001 From: John Hodge Date: Sun, 29 May 2016 16:23:29 +0800 Subject: HIR Typecheck - Start on expression type checking/inferrence --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index ffe61468..09d16dfe 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -173,7 +173,7 @@ int main(int argc, char *argv[]) }); // Check the rest of the expressions (including function bodies) CompilePhaseV("Typecheck Expressions", [&]() { - //Typecheck_Expressions(*hir_crate); + Typecheck_Expressions(*hir_crate); }); if( params.last_stage == ProgramParams::STAGE_TYPECK ) { -- cgit v1.2.3