Skip to content

Commit

Permalink
fix vector string construction for cxxwrap 0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
benlorenz committed Sep 7, 2023
1 parent 6efad08 commit 6ea1377
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/call_function.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function CxxWrap.StdVector{CxxWrap.StdString}(vec::AbstractVector{<:AbstractString})
return CxxWrap.StdVector(convert.(CxxWrap.StdString, vec))
return CxxWrap.StdVector{CxxWrap.StdString}(convert.(CxxWrap.StdString, vec))
end

"""
Expand Down

0 comments on commit 6ea1377

Please sign in to comment.