diff options
author | John Hodge <tpg@mutabah.net> | 2018-11-24 14:48:58 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2018-11-24 14:48:58 +0800 |
commit | c2f9278596a4f1eec3e611d3425edd10e0d15c83 (patch) | |
tree | 3be124faf015280f5bac4e83ebc77f4afb4077bc /src | |
parent | 3ed852f30e6b039050b44e2b89010215332b7bac (diff) | |
download | mrust-c2f9278596a4f1eec3e611d3425edd10e0d15c83.tar.gz |
HIR - Fix struct/class mismatch
Diffstat (limited to 'src')
-rw-r--r-- | src/hir/expr_state.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/hir/expr_state.hpp b/src/hir/expr_state.hpp index 5491b4d3..11fffe67 100644 --- a/src/hir/expr_state.hpp +++ b/src/hir/expr_state.hpp @@ -10,8 +10,9 @@ namespace HIR { -struct ExprState +class ExprState { +public: ::HIR::SimplePath m_mod_path; const ::HIR::Module& m_module; |