diff options
author | John Hodge <tpg@mutabah.net> | 2016-05-24 22:12:15 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-05-24 22:12:15 +0800 |
commit | c6404f9d52a6dd936a75a900748d8aa70268e923 (patch) | |
tree | 1b7ed3ad726b632977f08d56505366cd85b9df8c /src/parse/types.cpp | |
parent | 23cba420f497b5da5b0a63f078cea2ef2291078a (diff) | |
download | mrust-c6404f9d52a6dd936a75a900748d8aa70268e923.tar.gz |
AST - Move types.cpp to ast/ dir
Diffstat (limited to 'src/parse/types.cpp')
-rw-r--r-- | src/parse/types.cpp | 4 |
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); |