summaryrefslogtreecommitdiff
path: root/src/hir/type.hpp
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2016-05-26 23:04:53 +0800
committerJohn Hodge <tpg@mutabah.net>2016-05-26 23:04:53 +0800
commit46b2f9450a438a597492e0015b735e625ee0cd3a (patch)
treeed9de85163e36c3dd5f6c0fbc38945ca941787a0 /src/hir/type.hpp
parent81d89041e8500d9f6dfab9c55aee76967a5233f1 (diff)
downloadmrust-46b2f9450a438a597492e0015b735e625ee0cd3a.tar.gz
HIR Const Eval - libcore types done, onwards to `const` items
Diffstat (limited to 'src/hir/type.hpp')
-rw-r--r--src/hir/type.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/hir/type.hpp b/src/hir/type.hpp
index ca79a0c1..4b3692c0 100644
--- a/src/hir/type.hpp
+++ b/src/hir/type.hpp
@@ -74,6 +74,7 @@ struct TypeRef
(Array, struct {
::std::unique_ptr<TypeRef> inner;
::HIR::ExprPtr size;
+ size_t size_val;
}),
(Slice, struct {
::std::unique_ptr<TypeRef> inner;