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/ast/ast.cpp | |
parent | 23cba420f497b5da5b0a63f078cea2ef2291078a (diff) | |
download | mrust-c6404f9d52a6dd936a75a900748d8aa70268e923.tar.gz |
AST - Move types.cpp to ast/ dir
Diffstat (limited to 'src/ast/ast.cpp')
-rw-r--r-- | src/ast/ast.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ast/ast.cpp b/src/ast/ast.cpp index 804b7cac..2521a878 100644 --- a/src/ast/ast.cpp +++ b/src/ast/ast.cpp @@ -2,7 +2,7 @@ */
#include "ast.hpp"
#include "crate.hpp"
-#include "../types.hpp"
+#include "types.hpp"
#include "../common.hpp"
#include <iostream>
#include "../parse/parseerror.hpp"
|