Skip to content

Commit

Permalink
all: ensure compatibility with older Go versions
Browse files Browse the repository at this point in the history
  • Loading branch information
FiloSottile authored and gtank committed Dec 5, 2019
1 parent a679c26 commit 502122d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion go.mod
@@ -1,3 +1,3 @@
module github.com/gtank/ristretto255

go 1.12
go 1.11
2 changes: 1 addition & 1 deletion internal/radix51/bench_test.go
Expand Up @@ -35,6 +35,6 @@ func BenchmarkMul32(b *testing.B) {
x.One()
b.ResetTimer()
for i := 0; i < b.N; i++ {
x.Mul32(&x, 0b10101010_10101010_10101010_10101010)
x.Mul32(&x, 0xaa42aa42)
}
}

0 comments on commit 502122d

Please sign in to comment.