summaryrefslogtreecommitdiff
path: root/src/hir_conv/bind.cpp
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2016-08-11 10:13:18 +0800
committerJohn Hodge <tpg@mutabah.net>2016-08-11 10:13:18 +0800
commit1ecde512a0757c0e5dd3bce6c267d76a757bd4e9 (patch)
treef2c4e3a50c6e7b885f588398ff1e1c398e8272a1 /src/hir_conv/bind.cpp
parent0767462da25193c3e39080e8ffe71ad8c0963d3c (diff)
downloadmrust-1ecde512a0757c0e5dd3bce6c267d76a757bd4e9.tar.gz
All - Clang warning fixes
Diffstat (limited to 'src/hir_conv/bind.cpp')
-rw-r--r--src/hir_conv/bind.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hir_conv/bind.cpp b/src/hir_conv/bind.cpp
index a78d0d5a..9457585c 100644
--- a/src/hir_conv/bind.cpp
+++ b/src/hir_conv/bind.cpp
@@ -328,7 +328,7 @@ namespace {
e.binding = ::HIR::TypeRef::TypePathBinding::make_Enum(&e3);
),
(Trait,
- ty.m_data = ::HIR::TypeRef::Data::make_TraitObject({ mv$(pe), {}, {} });
+ ty.m_data = ::HIR::TypeRef::Data::make_TraitObject({ ::HIR::TraitPath { mv$(pe), {}, {} }, {}, {} });
)
)
),