summaryrefslogtreecommitdiff
path: root/src/parse
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2016-05-24 22:12:15 +0800
committerJohn Hodge <tpg@mutabah.net>2016-05-24 22:12:15 +0800
commitc6404f9d52a6dd936a75a900748d8aa70268e923 (patch)
tree1b7ed3ad726b632977f08d56505366cd85b9df8c /src/parse
parent23cba420f497b5da5b0a63f078cea2ef2291078a (diff)
downloadmrust-c6404f9d52a6dd936a75a900748d8aa70268e923.tar.gz
AST - Move types.cpp to ast/ dir
Diffstat (limited to 'src/parse')
-rw-r--r--src/parse/types.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parse/types.cpp b/src/parse/types.cpp
index fe23b509..370f78a3 100644
--- a/src/parse/types.cpp
+++ b/src/parse/types.cpp
@@ -7,8 +7,8 @@
*/
#include "common.hpp"
#include "parseerror.hpp"
-#include "../types.hpp"
-#include "../ast/ast.hpp"
+#include <ast/types.hpp>
+#include <ast/ast.hpp>
// === PROTOTYPES ===
TypeRef Parse_Type(TokenStream& lex);