@@ -523,7 +523,7 @@ public struct BacktraceFormatter {
523
523
///
524
524
/// @result An array of strings, one per column.
525
525
public func formatColumns( frame: Backtrace . Frame ,
526
- addressWidth: Int = 64 ,
526
+ addressWidth: Int ,
527
527
index: Int ? = nil ) -> [ String ] {
528
528
let pc : String
529
529
var attrs : [ String ] = [ ]
@@ -563,7 +563,7 @@ public struct BacktraceFormatter {
563
563
///
564
564
/// @result An array of table rows.
565
565
public func formatRows( frame: Backtrace . Frame ,
566
- addressWidth: Int = 64 ,
566
+ addressWidth: Int ,
567
567
index: Int ? = nil ) -> [ TableRow ] {
568
568
return [ . columns( formatColumns ( frame: frame,
569
569
addressWidth: addressWidth,
@@ -578,7 +578,7 @@ public struct BacktraceFormatter {
578
578
///
579
579
/// @result A `String` containing the formatted data.
580
580
public func format( frame: Backtrace . Frame ,
581
- addressWidth: Int = 64 ,
581
+ addressWidth: Int ,
582
582
index: Int ? = nil ) -> String {
583
583
let rows = formatRows ( frame: frame,
584
584
addressWidth: addressWidth,
@@ -593,7 +593,7 @@ public struct BacktraceFormatter {
593
593
///
594
594
/// @result A `String` containing the formatted data.
595
595
public func format( frames: some Sequence < Backtrace . Frame > ,
596
- addressWidth: Int = 64 ) -> String {
596
+ addressWidth: Int ) -> String {
597
597
var rows : [ TableRow ] = [ ]
598
598
599
599
var n = 0
@@ -734,7 +734,7 @@ public struct BacktraceFormatter {
734
734
///
735
735
/// @result An array of strings, one per column.
736
736
public func formatColumns( frame: SymbolicatedBacktrace . Frame ,
737
- addressWidth: Int = 64 ,
737
+ addressWidth: Int ,
738
738
index: Int ? = nil ) -> [ String ] {
739
739
let pc : String
740
740
var attrs : [ String ] = [ ]
@@ -851,7 +851,7 @@ public struct BacktraceFormatter {
851
851
///
852
852
/// @result An array of table rows.
853
853
public func formatRows( frame: SymbolicatedBacktrace . Frame ,
854
- addressWidth: Int = 64 ,
854
+ addressWidth: Int ,
855
855
index: Int ? = nil ,
856
856
showSource: Bool = true ) -> [ TableRow ] {
857
857
let columns = formatColumns ( frame: frame,
@@ -880,7 +880,7 @@ public struct BacktraceFormatter {
880
880
///
881
881
/// @result A `String` containing the formatted data.
882
882
public func format( frame: SymbolicatedBacktrace . Frame ,
883
- addressWidth: Int = 64 ,
883
+ addressWidth: Int ,
884
884
index: Int ? = nil ,
885
885
showSource: Bool = true ) -> String {
886
886
let rows = formatRows ( frame: frame, addressWidth: addressWidth,
@@ -902,7 +902,7 @@ public struct BacktraceFormatter {
902
902
///
903
903
/// @result A `String` containing the formatted data.
904
904
public func format( frames: some Sequence < SymbolicatedBacktrace . Frame > ,
905
- addressWidth: Int = 64 ) -> String {
905
+ addressWidth: Int ) -> String {
906
906
var rows : [ TableRow ] = [ ]
907
907
var sourceLocationsShown = Set < SymbolicatedBacktrace . SourceLocation > ( )
908
908
@@ -982,7 +982,7 @@ public struct BacktraceFormatter {
982
982
///
983
983
/// @result An array of strings, one per column.
984
984
public func formatColumns( image: Backtrace . Image ,
985
- addressWidth: Int = 64 ) -> [ String ] {
985
+ addressWidth: Int ) -> [ String ] {
986
986
let addressRange = " \( hex ( image. baseAddress, width: addressWidth) ) – \( hex ( image. endOfText, width: addressWidth) ) "
987
987
let buildID : String
988
988
if let bytes = image. buildID {
@@ -1011,7 +1011,7 @@ public struct BacktraceFormatter {
1011
1011
///
1012
1012
/// @result A string containing the formatted data.
1013
1013
public func format( images: some Sequence < Backtrace . Image > ,
1014
- addressWidth: Int = 64 ) -> String {
1014
+ addressWidth: Int ) -> String {
1015
1015
let rows = images. map {
1016
1016
TableRow . columns (
1017
1017
formatColumns ( image: $0,
0 commit comments