Gabriel Devillers

Results 10 comments of Gabriel Devillers

Sorry, my code does not reproduce my error, I will try again to extract something which does.

Code updated, I think that it reproduces. The difference between the code that does not shows the error and the one that does, is that one of the two classes...

I think that the problem is literally that **_'pybind11::detail::argument_loader::argcasters' has either no appropriate default constructor_** because MyVariant has a default constructor only in the example that does not reproduce. I...

So changing using MyVariant = std::variant; to using MyVariant = std::variant; solves the compilation problem. But this is not ideal for me because that requires changing the C++ code and...

Proposition of alternative solution, that allows not polluting the C++ code with unwanted std::monostate in variants: py::class_(m, "MyTestClass") .def(py::init([](const monostated::type& v) { return MyTestClass(variant_cast_no_monostate(v)); })); The Python constructor `MyTestClass` will...

This is a problem for me because I am working on a script that mirrors Git branches to SVN, so I need to regularily `git lfs migrate export` so as...

Thanks for this answer. I am not sure I understand though: Does having the following in the .gitattributes ignore the .bin extension ? *.bin filter=lfs diff=lfs merge=lfs -text * !text...

Ok, thats clearer thanks. But then do you know why I get a non-clean status on the files that have been moved out of git-lfs ?

> Ok, thats clearer thanks. But then do you know why I get a non-clean status on the files that have been moved out of git-lfs ? Actually I cannot...

Have you checked other software(s) are able to give USB mass-storage access ? Such as Tow-Boot when booting with "volume up" pressed, or booting an OS from the SD Card...