Skip to content

Commit 723462e

Browse files
committed
wip
1 parent 17fb65c commit 723462e

File tree

1 file changed

+1
-1
lines changed
  • portable/src/implementation

1 file changed

+1
-1
lines changed

portable/src/implementation/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pub(crate) unsafe fn validate_utf8_compat(input: &[u8]) -> Result<(), crate::com
3737

3838
unsafe fn validate_utf8_compat_simd(input: &[u8]) -> Result<(), crate::compat::Utf8Error> {
3939
#[cfg(not(feature = "simd256"))]
40-
return portable::simd128::validate_utf8_compat(input);
40+
return portable::algorithm_new::validate_utf8_compat(input);
4141
#[cfg(feature = "simd256")]
4242
return portable::simd256::validate_utf8_compat(input);
4343
}

0 commit comments

Comments
 (0)