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 4bdb59d commit 0d2621fCopy full SHA for 0d2621f
Cargo.toml
@@ -2,7 +2,7 @@
2
name = "sliceslice"
3
version = "0.3.1"
4
authors = ["marmeladema <xademax@gmail.com>", "Zak Cutner <me@zakcutner.uk>"]
5
-edition = "2018"
+edition = "2021"
6
description = "A fast implementation of single-pattern substring search using SIMD acceleration"
7
readme = "README.md"
8
repository = "https://github.com/cloudflare/sliceslice-rs"
src/x86.rs
@@ -436,7 +436,7 @@ pub enum DynamicAvx2Searcher<N: Needle> {
436
437
macro_rules! array {
438
($c:ident, $S:literal) => [seq!(N in 0..$S {
439
- [ #( $c#N, )* ]
+ [ #( $c #N, )* ]
440
})];
441
}
442
0 commit comments