Skip to content

Commit

Permalink
Fix dotnet fable compatibility 🐛
Browse files Browse the repository at this point in the history
  • Loading branch information
Freymaurer committed Nov 3, 2023
1 parent e2e9eba commit 7b135ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions src/ARCtrl/ARCtrl.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
<RepositoryUrl>https://github.com/nfdi4plants/ARCtrl</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<Content Include="*.fsproj; **\*.fs; **\*.fsi" PackagePath="fable\" />
</ItemGroup>
<ItemGroup>
<None Include="../../build/logo.png" Pack="true" PackagePath="\" />
</ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/ISA/ISA/ArcTypes/ArcTable.fs
Original file line number Diff line number Diff line change
Expand Up @@ -437,8 +437,8 @@ type ArcTable(name: string, headers: ResizeArray<CompositeHeader>, values: Syste
// - Row API - //
member this.RemoveRow (index:int) =
ArcTableAux.SanityChecks.validateRowIndex index this.RowCount false
let removeCells = Unchecked.removeRowCells_withIndexChange index this.ColumnCount this.RowCount this.Values
()
// removeCells
Unchecked.removeRowCells_withIndexChange index this.ColumnCount this.RowCount this.Values

static member removeRow (index:int) =
fun (table:ArcTable) ->
Expand Down

0 comments on commit 7b135ca

Please sign in to comment.