Skip to content

Commit 8cba09a

Browse files
authored
Merge pull request #39109 from DougGregor/swift-inspect-fix
2 parents e4f0815 + 9a8847d commit 8cba09a

File tree

1 file changed

+2
-2
lines changed
  • tools/swift-inspect/Sources/swift-inspect

1 file changed

+2
-2
lines changed

tools/swift-inspect/Sources/swift-inspect/main.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,10 +159,10 @@ struct UniversalOptions: ParsableArguments {
159159

160160
struct BacktraceOptions: ParsableArguments {
161161
@Flag(help: "Show the backtrace for each allocation")
162-
var backtrace: Bool
162+
var backtrace: Bool = false
163163

164164
@Flag(help: "Show a long-form backtrace for each allocation")
165-
var backtraceLong: Bool
165+
var backtraceLong: Bool = false
166166

167167
var style: Backtrace.Style? {
168168
backtrace ? .oneLine :

0 commit comments

Comments
 (0)