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 6cb9e5c commit 7d234d7Copy full SHA for 7d234d7
benchmark/single-source/NaiveRangeReplaceableCollectionConformance.swift
@@ -78,7 +78,7 @@ public func runAppendLargeContiguous(N: Int) {
78
for _ in 1...N {
79
var rrc = NaiveRRC()
80
rrc.append(contentsOf: contiguous)
81
- blackHole(rrc.count + rrc[0])
+ blackHole(rrc.count + Int(rrc[0]))
82
}
83
84
@@ -89,14 +89,14 @@ public func runAppendSmallContiguousRepeatedly(N: Int) {
89
for _ in 1...1_000_000 {
90
91
92
93
94
95
96
@inline(never)
97
public func runInitLargeContiguous(N: Int) {
98
99
var rrc = NaiveRRC(contiguous)
100
101
102
0 commit comments