Skip to content

Commit 9bcbacf

Browse files
committed
fix: syntax error
1 parent 0a106f6 commit 9bcbacf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/c_interface.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ function evaluate_model(
136136
zeros(x.field)
137137
end
138138
end
139-
Base.@ccallable function eval_model(points::Ptr{CPoints},length::Cint)::Float32
139+
Base.@ccallable function eval_model(points::Ptr{CPoint},length::Cint)::Float32
140140
points = map(unsafe_wrap(Array, points, length)) do p
141141
Point3f(p.x,p.y,p.z)
142142
end |> Batch

0 commit comments

Comments
 (0)