summaryrefslogtreecommitdiff
path: root/src/hir/hir.hpp
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2018-08-01 18:21:01 +0800
committerJohn Hodge <tpg@mutabah.net>2018-08-01 18:21:01 +0800
commita88d64cbbaeaeb2725259f318f7758ae7a7a91b0 (patch)
tree8150a7e15b1de59edefc2bdfcae0a121ea811ce8 /src/hir/hir.hpp
parentc971a6fa8375598ecf9c99ee6b086e8cf957f568 (diff)
downloadmrust-a88d64cbbaeaeb2725259f318f7758ae7a7a91b0.tar.gz
HIR - Conversion and typecheck fixes for 1.29
Diffstat (limited to 'src/hir/hir.hpp')
-rw-r--r--src/hir/hir.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/hir/hir.hpp b/src/hir/hir.hpp
index 20b9ad58..daa27d10 100644
--- a/src/hir/hir.hpp
+++ b/src/hir/hir.hpp
@@ -8,6 +8,7 @@
* Contains the expanded and desugared AST
*/
#pragma once
+#include <target_version.hpp>
#include <cassert>
#include <unordered_map>
@@ -122,6 +123,7 @@ public:
//PointerMut,
//PointerConst,
Box,
+ Custom,
};
typedef ::std::vector< ::std::pair< ::HIR::Pattern, ::HIR::TypeRef> > args_t;