aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/include/ast.hpp
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-03-05 20:55:12 +0000
committerYann Herklotz <ymherklotz@gmail.com>2017-03-05 20:55:12 +0000
commiteccb6c5360f213675a513e875bc424b8bdee16e7 (patch)
tree88b2826a2898223bcd5f02d5e5fd1f2c1c9b7e2a /c_compiler/include/ast.hpp
parent6b7f5137edb18372bc3e3076dab1cb45c8e4c2ec (diff)
downloadCompiler-eccb6c5360f213675a513e875bc424b8bdee16e7.tar.gz
Compiler-eccb6c5360f213675a513e875bc424b8bdee16e7.zip
Finished ast change and it works
Diffstat (limited to 'c_compiler/include/ast.hpp')
-rw-r--r--c_compiler/include/ast.hpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/c_compiler/include/ast.hpp b/c_compiler/include/ast.hpp
index 5a31fca..86c9934 100644
--- a/c_compiler/include/ast.hpp
+++ b/c_compiler/include/ast.hpp
@@ -6,15 +6,13 @@
#include <iostream>
#include "node.hpp"
-//#include "expression.hpp"
-//#include "primitives.hpp"
+#include "expression.hpp"
#include "type.hpp"
#include "initializer.hpp"
#include "declaration.hpp"
#include "statement.hpp"
#include "function.hpp"
#include "translation_unit.hpp"
-//#include "ast_top.hpp"
TranslationUnit* parseAST();