File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ pub mod verify {
172172 #[ cfg( not( all( target_arch = "x86_64" , target_feature = "sse2" ) ) ) ]
173173 pub fn check_memchr_naive ( ) {
174174 const ARR_SIZE : usize = 1000 ;
175- let x: u8 = kani:: any ( ) ;
175+ let x: u8 = kani:: any ( ) ;
176176 let a: [ u8 ; ARR_SIZE ] = kani:: any ( ) ;
177177 let text = kani:: slice:: any_slice_of_array ( & a) ;
178178 let _result = memchr_naive ( x, text) ;
@@ -182,10 +182,9 @@ pub mod verify {
182182 #[ cfg( not( all( target_arch = "x86_64" , target_feature = "sse2" ) ) ) ]
183183 pub fn check_memchr_naive ( ) {
184184 const ARR_SIZE : usize = 1000 ;
185- let x: u8 = kani:: any ( ) ;
185+ let x: u8 = kani:: any ( ) ;
186186 let a: [ u8 ; ARR_SIZE ] = kani:: any ( ) ;
187187 let text = kani:: slice:: any_slice_of_array ( & a) ;
188188 let _result = memrchr ( x, text) ;
189189 }
190-
191190}
You can’t perform that action at this time.
0 commit comments