diff options
author | John Hodge <tpg@mutabah.net> | 2015-03-27 11:42:21 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2015-03-27 11:42:21 +0800 |
commit | 27362c07d86e3d24b75545916697f124d826bbc9 (patch) | |
tree | 728800bb9760fd8b7f43f44d854b2d2ab9a90201 /src/main.cpp | |
parent | 17ea6a8317e7bf1c86f150b486892bae7e312c11 (diff) | |
download | mrust-27362c07d86e3d24b75545916697f124d826bbc9.tar.gz |
Fix minor issues in path resolving (bindings incorrect in places)
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index e0188012..bbe079fd 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -64,7 +64,8 @@ int main(int argc, char *argv[]) // Resolve names to be absolute names (include references to the relevant struct/global/function)
g_cur_phase = "Resolve";
ResolvePaths(crate);
- //s << crate;
+
+ g_cur_phase = "Temp output"; Dump_Rust( FMT(params.outfile << ".rs").c_str(), crate );
// Typecheck / type propagate module (type annotations of all values)
// - Check all generic conditions (ensure referenced trait is valid)
|