chore: undo formatting (unrelated change)

This commit is contained in:
Sandeep Nambiar 2023-07-25 04:57:24 +02:00
parent 8a837b8973
commit 148caab599

View File

@ -65,9 +65,7 @@ impl Builder {
/// Add an input .rs file(such as generated from bindgen) to generate binding.
pub fn input_bindgen_file<T: AsRef<Path>>(mut self, input_bindgen_file: T) -> Builder {
self.options
.input_bindgen_files
.push(input_bindgen_file.as_ref().to_path_buf());
self.options.input_bindgen_files.push(input_bindgen_file.as_ref().to_path_buf());
self
}