Skip to content

Commit

Permalink
Revert unintended change in default!
Browse files Browse the repository at this point in the history
  • Loading branch information
Freymaurer committed Jan 22, 2024
1 parent 66b15f6 commit 13428ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ISA/ISA/ArcTypes/ArcTable.fs
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ type ArcTable(name: string, headers: ResizeArray<CompositeHeader>, values: Syste
member this.Join(table:ArcTable, ?index: int, ?joinOptions: TableJoinOptions, ?forceReplace: bool, ?skipFillMissing) : unit =
let joinOptions = defaultArg joinOptions TableJoinOptions.Headers
let forceReplace = defaultArg forceReplace false
let skipFillMissing = defaultArg skipFillMissing true
let skipFillMissing = defaultArg skipFillMissing false
let mutable index = defaultArg index this.ColumnCount
index <- if index = -1 then this.ColumnCount else index //make -1 default to append to make function usage more fluent.
SanityChecks.validateColumnIndex index this.ColumnCount true
Expand Down

0 comments on commit 13428ca

Please sign in to comment.