Skip to content

Commit

Permalink
build dotnet
Browse files Browse the repository at this point in the history
Signed-off-by: tison <[email protected]>
  • Loading branch information
tisonkun committed Aug 23, 2024
1 parent 03704ed commit f42af33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindings/dotnet/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ pub unsafe extern "C" fn blocking_operator_construct(
Err(_) => return std::ptr::null(),
};

let mut map = HashMap::default();
let mut map = HashMap::<String, String>::default();
map.insert("root".to_string(), "/tmp".to_string());
let op = match opendal::Operator::via_iter(scheme, map) {
Ok(op) => op.blocking(),
Expand Down

0 comments on commit f42af33

Please sign in to comment.