summaryrefslogtreecommitdiff
path: root/src/hir/expr_ptr.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/hir/expr_ptr.hpp')
-rw-r--r--src/hir/expr_ptr.hpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/hir/expr_ptr.hpp b/src/hir/expr_ptr.hpp
index d9f0982a..4ac4e86f 100644
--- a/src/hir/expr_ptr.hpp
+++ b/src/hir/expr_ptr.hpp
@@ -1,12 +1,15 @@
/*
+ * MRustC - Rust Compiler
+ * - By John Hodge (Mutabah/thePowersGang)
+ *
+ * hir/expr_ptr.hpp
+ * - HIR Expression
*/
#pragma once
#include <memory>
#include <vector>
-namespace MIR {
-class Function;
-}
+#include <mir/mir_ptr.hpp>
namespace HIR {
@@ -19,6 +22,7 @@ class ExprPtr
public:
::std::vector< ::HIR::TypeRef> m_bindings;
+ ::MIR::FunctionPointer m_mir;
public:
ExprPtr();