Skip to content

Commit eaecec1

Browse files
committed
Fix indentation
1 parent a1488d6 commit eaecec1

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

benchmark/single-source/StringRepeating.swift

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -35,23 +35,23 @@ func repeating(_ i: String, count: Int) -> String {
3535

3636
@inline(never)
3737
public func run_singleAsciiCharacterCount100(N: Int) {
38-
for _ in 1...5000*N {
39-
blackHole(repeating("x", count: 100))
40-
}
38+
for _ in 1...5000*N {
39+
blackHole(repeating("x", count: 100))
40+
}
4141
}
4242

4343
@inline(never)
4444
public func run_26AsciiCharactersCount2(N: Int) {
45-
for _ in 1...5000*N {
46-
blackHole(repeating("abcdefghijklmnopqrstuvwxyz", count: 2))
47-
}
45+
for _ in 1...5000*N {
46+
blackHole(repeating("abcdefghijklmnopqrstuvwxyz", count: 2))
47+
}
4848
}
4949

5050
@inline(never)
5151
public func run_33CyrillicCharactersCount2(N: Int) {
52-
for _ in 1...5000*N {
53-
blackHole(repeating("абвгґдеєжзиіїйклмнопрстуфхцчшщьюя", count: 2))
54-
}
52+
for _ in 1...5000*N {
53+
blackHole(repeating("абвгґдеєжзиіїйклмнопрстуфхцчшщьюя", count: 2))
54+
}
5555
}
5656

5757
func getLongString() -> String {
@@ -77,7 +77,7 @@ func getLongString() -> String {
7777

7878
@inline(never)
7979
public func run_longMixedStringCount100(N: Int) {
80-
for _ in 1...5000*N {
81-
blackHole(repeating(getLongString(), count: 100))
82-
}
80+
for _ in 1...5000*N {
81+
blackHole(repeating(getLongString(), count: 100))
82+
}
8383
}

0 commit comments

Comments
 (0)