Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed wrongly typed "cmesh" argument. #49

Merged
merged 1 commit into from
Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading