Skip to content

Commit

Permalink
Fixed wrongly typed argument. (#49)
Browse files Browse the repository at this point in the history
Co-authored-by: Johannes Markert <[email protected]>
  • Loading branch information
jmark and Johannes Markert authored Jan 11, 2024
1 parent 8f31cfc commit 4e3bfca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "T8code"
uuid = "d0cc0030-9a40-4274-8435-baadcfd54fa1"
authors = ["Johannes Markert <[email protected]>"]
version = "0.5.0"
version = "0.5.1"

[deps]
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82"
Expand All @@ -22,4 +22,4 @@ Preferences = "1"
Reexport = "0.2, 1.0"
TOML = "1"
julia = "1.6"
t8code_jll = "=1.6.1"
t8code_jll = "=1.6.1"
2 changes: 1 addition & 1 deletion src/Libt8.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15140,7 +15140,7 @@ void t8_cmesh_set_tree_vertices (t8_cmesh_t cmesh, t8_gloidx_t gtree_id, double
```
"""
function t8_cmesh_set_tree_vertices(cmesh, gtree_id, vertices, num_vertices)
@ccall libt8.t8_cmesh_set_tree_vertices(cmesh::Cint, gtree_id::Cint, vertices::Ptr{Cdouble}, num_vertices::Cint)::Cvoid
@ccall libt8.t8_cmesh_set_tree_vertices(cmesh::t8_cmesh_t, gtree_id::Cint, vertices::Ptr{Cdouble}, num_vertices::Cint)::Cvoid
end

"""
Expand Down

0 comments on commit 4e3bfca

Please sign in to comment.