Skip to content

Commit 25233e5

Browse files
committed
Fix small bit of incorrect code that was hiding behind an #if false.
1 parent e35ae37 commit 25233e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmark/single-source/PrimsNonStrongRef.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public let PrimsNonStrongRef: [BenchmarkInfo] = ({
3535
var benchmarks: [BenchmarkInfo] = []
3636
#if false
3737
// TODO: Stabilize weak benchmark.
38-
benchmarks..append(BenchmarkInfo(
38+
benchmarks.append(BenchmarkInfo(
3939
name: "Prims.NonStrongRef.Weak",
4040
runFunction: run_PrimsWeak,
4141
tags: [.validation, .algorithm],

0 commit comments

Comments
 (0)