Skip to content

Commit

Permalink
replace tabs by spaces for CI format failures
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulchaphalkar committed May 22, 2024
1 parent 06d3bc4 commit 81b6293
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions crates/openvino-sys/src/generated/functions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ extern "C" {
pub fn ov_compiled_model_set_property(
compiled_model: *const ov_compiled_model_t,
property_key: *const ::std::os::raw::c_char,
property_value: *const ::std::os::raw::c_char
property_value: *const ::std::os::raw::c_char
) -> ov_status_e;
}
extern "C" {
Expand Down Expand Up @@ -767,7 +767,7 @@ extern "C" {
core: *const ov_core_t,
device_name: *const ::std::os::raw::c_char,
property_key: *const ::std::os::raw::c_char,
property_value: *const ::std::os::raw::c_char
property_value: *const ::std::os::raw::c_char
) -> ov_status_e;
}
extern "C" {
Expand Down
2 changes: 1 addition & 1 deletion crates/xtask/src/codegen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ impl CodegenCommand {
let re = Regex::new(&format!(r"(?s){}.*?\.\.\.", function)).unwrap();
if re.is_match(&function_bindings_string) {
function_bindings_string = re.replace(&function_bindings_string, |caps: &regex::Captures| {
caps[0].replace("...", "property_key: *const ::std::os::raw::c_char,\n\tproperty_value: *const ::std::os::raw::c_char")
caps[0].replace("...", "property_key: *const ::std::os::raw::c_char,\n property_value: *const ::std::os::raw::c_char")
}).to_string();
}
}
Expand Down

0 comments on commit 81b6293

Please sign in to comment.