Skip to content

Commit 4e3bfca

Browse files
jmarkJohannes Markert
and
Johannes Markert
authored
Fixed wrongly typed argument. (#49)
Co-authored-by: Johannes Markert <[email protected]>
1 parent 8f31cfc commit 4e3bfca

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Project.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "T8code"
22
uuid = "d0cc0030-9a40-4274-8435-baadcfd54fa1"
33
authors = ["Johannes Markert <[email protected]>"]
4-
version = "0.5.0"
4+
version = "0.5.1"
55

66
[deps]
77
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82"
@@ -22,4 +22,4 @@ Preferences = "1"
2222
Reexport = "0.2, 1.0"
2323
TOML = "1"
2424
julia = "1.6"
25-
t8code_jll = "=1.6.1"
25+
t8code_jll = "=1.6.1"

src/Libt8.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -15140,7 +15140,7 @@ void t8_cmesh_set_tree_vertices (t8_cmesh_t cmesh, t8_gloidx_t gtree_id, double
1514015140
```
1514115141
"""
1514215142
function t8_cmesh_set_tree_vertices(cmesh, gtree_id, vertices, num_vertices)
15143-
@ccall libt8.t8_cmesh_set_tree_vertices(cmesh::Cint, gtree_id::Cint, vertices::Ptr{Cdouble}, num_vertices::Cint)::Cvoid
15143+
@ccall libt8.t8_cmesh_set_tree_vertices(cmesh::t8_cmesh_t, gtree_id::Cint, vertices::Ptr{Cdouble}, num_vertices::Cint)::Cvoid
1514415144
end
1514515145

1514615146
"""

0 commit comments

Comments
 (0)