Skip to content

Commit

Permalink
fix(aztec): fix compilation of aztec_library.rs (#2567)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench authored Sep 5, 2023
1 parent 9be750a commit a8d0328
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/noirc_frontend/src/hir/def_map/aztec_library.rs
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ pub(crate) fn create_return_type(ty: &str) -> FunctionReturnType {
let return_path = chained_path!("aztec", "abi", ty);

let ty = make_type(UnresolvedTypeData::Named(return_path, vec![]));
FunctionReturnType::Ty(ty, Span::default())
FunctionReturnType::Ty(ty)
}

/// Create Context Finish
Expand Down

0 comments on commit a8d0328

Please sign in to comment.