diff options
author | John Hodge <tpg@mutabah.net> | 2016-05-14 15:06:25 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-05-14 15:06:25 +0800 |
commit | d70587b729f9f982e284681d5d16794cf7209e28 (patch) | |
tree | d1c539d2bd6d226dea5a7240734e6e495932e272 /src/hir/expr_ptr.hpp | |
parent | f043a45fd21bab906cafc8964a892a64def65ec9 (diff) | |
download | mrust-d70587b729f9f982e284681d5d16794cf7209e28.tar.gz |
HIR - Boilerplate code, compiles
Diffstat (limited to 'src/hir/expr_ptr.hpp')
-rw-r--r-- | src/hir/expr_ptr.hpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/hir/expr_ptr.hpp b/src/hir/expr_ptr.hpp new file mode 100644 index 00000000..e6b1bec4 --- /dev/null +++ b/src/hir/expr_ptr.hpp @@ -0,0 +1,15 @@ +/* + */ +#pragma once + + +namespace HIR { + +class ExprNode; + +class ExprPtr +{ + ::HIR::ExprNode* node; +}; + +} // namespace HIR |