Skip to content

Commit a7f8229

Browse files
authored
Update string.rs
1 parent 096274f commit a7f8229

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/system/string.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ fn utf16_to_utf8_ascii_neon(input: &[u16]) -> Option<Vec<u8>> {
241241
Some(out)
242242
}
243243

244-
fn u8_to_u16_neon(input: &[u8]) -> Vec<u16> {
244+
pub fn u8_to_u16_neon(input: &[u8]) -> Vec<u16> {
245245
let len = input.len();
246246
let mut out = Vec::with_capacity(len);
247247

0 commit comments

Comments
 (0)