We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6e651c commit 260ccb2Copy full SHA for 260ccb2
harfbuzz/src/blob.rs
@@ -77,7 +77,7 @@ impl<'a> Blob<'a> {
77
78
// This has type hb_destroy_func_t
79
unsafe extern "C" fn arc_vec_blob_destroy(user_data: *mut c_void) {
80
- drop(Arc::from_raw(user_data as *const Vec<u8>))
+ drop(Arc::from_raw(user_data as *const Vec<u8>));
81
}
82
83
let hb_blob = sys::hb_blob_create(
harfbuzz/src/buffer.rs
@@ -134,7 +134,7 @@ impl Buffer {
134
text.len() as core::ffi::c_int,
135
0,
136
137
- )
+ );
138
};
139
140
@@ -154,7 +154,7 @@ impl Buffer {
154
other.raw,
155
start as core::ffi::c_uint,
156
end as core::ffi::c_uint,
157
158
159
160
0 commit comments