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 e2bb5e3 commit 479c532Copy full SHA for 479c532
Sources/Benchmark/BenchmarkArguments.swift
@@ -18,7 +18,7 @@ import ArgumentParser
18
/// all of the default benchmark settings.
19
public struct BenchmarkArguments: ParsableArguments {
20
@Flag(help: "Overrides check to verify optimized build.")
21
- var allowDebugBuild: Bool
+ var allowDebugBuild: Bool = false
22
23
@Option(help: "Run only benchmarks whose names match the regular expression.")
24
var filter: String?
@@ -52,7 +52,7 @@ public struct BenchmarkArguments: ParsableArguments {
52
var format: Format.Value?
53
54
@Flag(help: "Only print final benchmark results.")
55
- var quiet: Bool
+ var quiet: Bool = false
56
57
public init() {}
58
0 commit comments