summaryrefslogtreecommitdiff
path: root/src/hir/expr_ptr.hpp
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2016-05-14 15:06:25 +0800
committerJohn Hodge <tpg@mutabah.net>2016-05-14 15:06:25 +0800
commitd70587b729f9f982e284681d5d16794cf7209e28 (patch)
treed1c539d2bd6d226dea5a7240734e6e495932e272 /src/hir/expr_ptr.hpp
parentf043a45fd21bab906cafc8964a892a64def65ec9 (diff)
downloadmrust-d70587b729f9f982e284681d5d16794cf7209e28.tar.gz
HIR - Boilerplate code, compiles
Diffstat (limited to 'src/hir/expr_ptr.hpp')
-rw-r--r--src/hir/expr_ptr.hpp15
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