summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2018-11-24 14:48:58 +0800
committerJohn Hodge <tpg@mutabah.net>2018-11-24 14:48:58 +0800
commitc2f9278596a4f1eec3e611d3425edd10e0d15c83 (patch)
tree3be124faf015280f5bac4e83ebc77f4afb4077bc
parent3ed852f30e6b039050b44e2b89010215332b7bac (diff)
downloadmrust-c2f9278596a4f1eec3e611d3425edd10e0d15c83.tar.gz
HIR - Fix struct/class mismatch
-rw-r--r--src/hir/expr_state.hpp3
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;