diff options
Diffstat (limited to 'src/hir/path.cpp')
-rw-r--r-- | src/hir/path.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hir/path.cpp b/src/hir/path.cpp index 3c955f6a..e5243958 100644 --- a/src/hir/path.cpp +++ b/src/hir/path.cpp @@ -54,7 +54,7 @@ namespace HIR { { } ::HIR::Path::Path(::HIR::TypeRefPtr type, ::HIR::GenericPath trait, ::std::string item, ::HIR::PathParams params): - m_data( ::HIR::Path::Data::make_UFCS({ + m_data( ::HIR::Path::Data::make_UfcsKnown({ mv$(type), mv$(trait), mv$(item), mv$(params) }) ) { |