diff options
Diffstat (limited to 'src/hir/from_ast.cpp')
-rw-r--r-- | src/hir/from_ast.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/hir/from_ast.cpp b/src/hir/from_ast.cpp index 878e7d4c..46d2a19f 100644 --- a/src/hir/from_ast.cpp +++ b/src/hir/from_ast.cpp @@ -802,6 +802,7 @@ namespace { } ::HIR::Function LowerHIR_Function(const ::AST::Function& f) { + DEBUG(""); ::std::vector< ::std::pair< ::HIR::Pattern, ::HIR::TypeRef > > args; for(const auto& arg : f.args()) args.push_back( ::std::make_pair( LowerHIR_Pattern(arg.first), LowerHIR_Type(arg.second) ) ); |