diff options
author | John Hodge <tpg@mutabah.net> | 2016-10-23 14:25:34 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-10-23 14:25:34 +0800 |
commit | dfec5021812ae61d56fc376f7556726d79c4d48e (patch) | |
tree | 74caa3a37e4ab02ff7ea02c1ff6e2eb317ee8f74 /src | |
parent | d5fb66ba18c8684a55e32570c12bcd4ed1bb6d5a (diff) | |
download | mrust-dfec5021812ae61d56fc376f7556726d79c4d48e.tar.gz |
AST - (minor) Move dump_as_rust to ast/dump.cpp
Diffstat (limited to 'src')
-rw-r--r-- | src/ast/dump.cpp (renamed from src/dump_as_rust.cpp) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dump_as_rust.cpp b/src/ast/dump.cpp index 401cc63e..ad7c4ef7 100644 --- a/src/dump_as_rust.cpp +++ b/src/ast/dump.cpp @@ -2,12 +2,12 @@ * MRustC - Mutabah's Rust Compiler * - By John Hodge (Mutabah/thePowersGang) * - * dump_as_rust.cpp + * ast/dump.cpp * - Dumps the AST of a crate as rust code (annotated) */ -#include "ast/crate.hpp" -#include "ast/ast.hpp" -#include "ast/expr.hpp" +#include <ast/crate.hpp> +#include <ast/ast.hpp> +#include <ast/expr.hpp> #include <main_bindings.hpp> #include <cpp_unpack.h> |