diff options
author | John Hodge <tpg@mutabah.net> | 2016-10-01 08:07:44 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-10-01 08:07:44 +0800 |
commit | 68f877afae589e5c68989d38c2476d3caf57f162 (patch) | |
tree | e5ef9d623aa2f515f344632e4615ca56abda7204 /src/hir/expr.hpp | |
parent | 7103ae063fe1007099044973073d3b2c50fc48d7 (diff) | |
download | mrust-68f877afae589e5c68989d38c2476d3caf57f162.tar.gz |
HIR - Support tuple enum variants as function pointers
Diffstat (limited to 'src/hir/expr.hpp')
-rw-r--r-- | src/hir/expr.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/hir/expr.hpp b/src/hir/expr.hpp index d1a86c4e..d3bc8ad0 100644 --- a/src/hir/expr.hpp +++ b/src/hir/expr.hpp @@ -636,6 +636,7 @@ struct ExprNode_PathValue: UNKNOWN, FUNCTION, STRUCT_CONSTR, + ENUM_VAR_CONSTR, STATIC, CONSTANT, }; |