summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2016-07-12 18:26:43 +1000
committerJohn Hodge <tpg@mutabah.net>2016-07-12 18:26:43 +1000
commite353e6f88b4a694e1e93a1f09c84d086cc4a826d (patch)
treec67da8ae3174b2a89d9df65f765d32d6e2e5867a
parentcd4f12dd46d26e59bbdfc1f83c815c0af5c46307 (diff)
downloadmrust-e353e6f88b4a694e1e93a1f09c84d086cc4a826d.tar.gz
HIR Typecheck - (minor) Print type in monomorphise_type TODO
-rw-r--r--src/hir_typeck/helpers.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hir_typeck/helpers.cpp b/src/hir_typeck/helpers.cpp
index f92986a0..a7094f5d 100644
--- a/src/hir_typeck/helpers.cpp
+++ b/src/hir_typeck/helpers.cpp
@@ -162,10 +162,10 @@ bool monomorphise_type_needed(const ::HIR::TypeRef& tpl)
}) );
),
(UfcsUnknown,
- TODO(sp, "UfcsUnknown");
+ TODO(sp, "UfcsUnknown - " << tpl);
),
(UfcsInherent,
- TODO(sp, "UfcsInherent");
+ TODO(sp, "UfcsInherent - " << tpl);
)
)
),