mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
[benchmark] Stop capitalizing function and variable names
This commit is contained in:
@@ -13,12 +13,12 @@ public var COWTree = BenchmarkInfo(
|
||||
)
|
||||
|
||||
@inline(never)
|
||||
public func run_COWTree(_ N: Int) {
|
||||
public func run_COWTree(_ n: Int) {
|
||||
var tree1 = Tree<String>()
|
||||
var tree2 = Tree<String>()
|
||||
var tree3 = Tree<String>()
|
||||
|
||||
for _ in 1...50*N {
|
||||
for _ in 1...50*n {
|
||||
tree1 = Tree<String>()
|
||||
tree1.insert("Emily")
|
||||
tree2 = tree1
|
||||
|
||||
Reference in New Issue
Block a user