wlav
wlav
I remember seeing this before, but can't find it anymore. I forget what it was exactly, but something along the lines of Clang thinking a destructor was already emitted when...
There's a bug somewhere in the backend that causes `std::basic_string` to be renamed `std::basic_string`. I've never found the proximate cause, had a workaround for that for a while, and thought...
Yes, this is explicitly done this way: implicit conversion is tried before template instantiation for known methods (but not for templated methods). As in TemplateProxy.cxx: ``` // case 2: select...
Setting `implicitOkay` to `false` doesn't break any existing tests, but does (unsurprisingly) break the conversion to `unique_ptr`, meaning that if there is *no* template to match, to call will then...
I'll have a look, but note that `dir()` isn't actually loading anything, only displaying.
Python's memory allocator uses arena's, so `PyObject`s are re-used. If a pointer is kept somewhere to a Python object that has been recycled, that will appear as such a type...
You can test by setting the envar `EXTRA_CLING_ARGS` to see whether it solves the issue. (That's not a general solution, but if it fixes things, would be an indication that...
The mapping should be even more general: any implicit cast should be allowed. Baidyanath started this, but then other distractions popped up (conferences, a paper, and more work on InterOp)....
> Does cppyy support C++ template functions? Yes.
The multiple threads are started by BLAS, probably b/c of OpenMP, for which there should be a simple way of either switching that off, or setting the number of threads...