summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/hir/expr.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/hir/expr.hpp b/src/hir/expr.hpp
index 65e5bb0d..67548069 100644
--- a/src/hir/expr.hpp
+++ b/src/hir/expr.hpp
@@ -306,6 +306,7 @@ struct ExprNode_Cast:
public ExprNode
{
::HIR::ExprNodeP m_value;
+ // TODO: Re-instate the local type, to allow for coercions?
ExprNode_Cast(Span sp, ::HIR::ExprNodeP value, ::HIR::TypeRef dst_type):
ExprNode( mv$(sp), mv$(dst_type) ),