diff options
author | John Hodge <tpg@mutabah.net> | 2016-07-12 18:26:43 +1000 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-07-12 18:26:43 +1000 |
commit | e353e6f88b4a694e1e93a1f09c84d086cc4a826d (patch) | |
tree | c67da8ae3174b2a89d9df65f765d32d6e2e5867a | |
parent | cd4f12dd46d26e59bbdfc1f83c815c0af5c46307 (diff) | |
download | mrust-e353e6f88b4a694e1e93a1f09c84d086cc4a826d.tar.gz |
HIR Typecheck - (minor) Print type in monomorphise_type TODO
-rw-r--r-- | src/hir_typeck/helpers.cpp | 4 |
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); ) ) ), |