Josh Christie

Results 3 comments of Josh Christie

Ran into the same issue. Resolved by including the `__init__()` function from the README. ```julia # Load the module and generate the functions module CppHello using CxxWrap @wrapmodule(joinpath("path/to/built/lib","libhello")) function __init__()...

It seems that calling `buf.GetBytes()` will not return a copy of Mat. So after calling `buf.Close()` and trying to access the variable `b := buf.GetBytes()` it will give a `signal...

Thanks for the explanation. That makes sense. However, when i tried this out i get an error. Should this be a warning instead? ``` julia julia> using Logging julia> Logging.configure(level=INFO)...