diff options
author | John Hodge <tpg@mutabah.net> | 2016-05-15 16:41:14 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-05-15 16:41:14 +0800 |
commit | 4160198a0a1159319a4e523e364ba57e4702295c (patch) | |
tree | bfd733d9af56f789518400fff77df6f8a3f857cb /src/hir/expr_ptr.hpp | |
parent | 0bc8acddc94730dcb1f9bd3b2c981b119fe57f6f (diff) | |
download | mrust-4160198a0a1159319a4e523e364ba57e4702295c.tar.gz |
HIR - Start on expression conversion
Diffstat (limited to 'src/hir/expr_ptr.hpp')
-rw-r--r-- | src/hir/expr_ptr.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/hir/expr_ptr.hpp b/src/hir/expr_ptr.hpp index e6b1bec4..2804136b 100644 --- a/src/hir/expr_ptr.hpp +++ b/src/hir/expr_ptr.hpp @@ -10,6 +10,10 @@ class ExprNode; class ExprPtr { ::HIR::ExprNode* node; + +public: + ExprPtr(); + ~ExprPtr(); }; } // namespace HIR |