You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an existing published package that I'm updating for Julia 1.10, and have also updated CxxWrap 0.12 -> 0.14 as a result.
The CxxWrap code has needed a number of small changes to get working, however I'm stuck resolving the following error that is thrown when calling @wrapmodule:
The error doesn't help clarify which method is duplicated, but through trial and error it looks like it is an attempt to add a parametric type that is at fault. Specifically, if I comment out the entire casacorecxx_jll module and leave just this:
I have an existing published package that I'm updating for Julia 1.10, and have also updated CxxWrap 0.12 -> 0.14 as a result.
The CxxWrap code has needed a number of small changes to get working, however I'm stuck resolving the following error that is thrown when calling
@wrapmodule
:The error doesn't help clarify which method is duplicated, but through trial and error it looks like it is an attempt to add a parametric type that is at fault. Specifically, if I comment out the entire
casacorecxx_jll
module and leave just this:I can still trigger the error. If I remove the second parametric type parameter (e.g. leave just
casacore::Vector<Bool>
), the error goes away.So what's wrong with how I'm trying to handle the parametric types here?
The text was updated successfully, but these errors were encountered: