aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/include/ast.hpp
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-03-03 21:24:20 +0000
committerYann Herklotz <ymherklotz@gmail.com>2017-03-03 21:24:20 +0000
commitee069912377bf8f5069489e527af642953d5883d (patch)
tree97fa985de635d0b5c82158411b80ac3f7b08a915 /c_compiler/include/ast.hpp
parent76de3faca823ce51e32f0e3c4bcc6127492efdc5 (diff)
downloadCompiler-ee069912377bf8f5069489e527af642953d5883d.tar.gz
Compiler-ee069912377bf8f5069489e527af642953d5883d.zip
Going to test
Diffstat (limited to 'c_compiler/include/ast.hpp')
-rw-r--r--c_compiler/include/ast.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/c_compiler/include/ast.hpp b/c_compiler/include/ast.hpp
index bb3e92f..4a57282 100644
--- a/c_compiler/include/ast.hpp
+++ b/c_compiler/include/ast.hpp
@@ -5,13 +5,15 @@
#include <string>
#include <iostream>
-#include "base.hpp"
+#include "node.hpp"
#include "statement.hpp"
#include "function.hpp"
#include "declaration.hpp"
#include "expression.hpp"
#include "primitives.hpp"
-#include "external.hpp"
+#include "type.hpp"
+#include "initializer.hpp"
+#include "translation_unit.hpp"
#include "ast_top.hpp"
const BaseList* parseAST();