summaryrefslogtreecommitdiff
path: root/src/mir/from_hir_match.cpp
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2016-08-22 18:09:29 +0800
committerJohn Hodge <tpg@mutabah.net>2016-08-22 18:09:29 +0800
commit22e3558a6cd349e4777b9895032ef746e3d8d859 (patch)
tree50454b46e843def8b2cc921ccd4c23d6197fc3d0 /src/mir/from_hir_match.cpp
parent81e62702789a0f876d311b5bfb976a6fa1c037e3 (diff)
downloadmrust-22e3558a6cd349e4777b9895032ef746e3d8d859.tar.gz
HIR Typecheck - Split monomorphise_* into a separate header
Diffstat (limited to 'src/mir/from_hir_match.cpp')
-rw-r--r--src/mir/from_hir_match.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mir/from_hir_match.cpp b/src/mir/from_hir_match.cpp
index 66b3f685..78691dcc 100644
--- a/src/mir/from_hir_match.cpp
+++ b/src/mir/from_hir_match.cpp
@@ -6,7 +6,7 @@
* - Conversion of `match` blocks into MIR
*/
#include "from_hir.hpp"
-#include <hir_typeck/helpers.hpp> // monomorphise_type
+#include <hir_typeck/common.hpp> // monomorphise_type
#include <algorithm>
void MIR_LowerHIR_Match( MirBuilder& builder, MirConverter& conv, ::HIR::ExprNode_Match& node, ::MIR::LValue match_val );