Jason Rhinelander
Jason Rhinelander
I think to work around the systemd issue (which we need to -- even if this gets fixed in upstream systemd, this is present in Ubuntu impish and will also...
Reopened by #1459
Click -> End -> Shift Home -> Ctrl-V What is this "mouse" crap ;) But yeah, needs improvement.
I've registered the ipv6 ULA prefix `fd2e:6c6f:6b69::/48` (i.e. fd followed by ".loki" in hex) for Lokinet for this purpose on https://ula.ungleich.ch/, which seems to be the current best effort at...
Also note that, in order to make this work (especially on macos) we need to adjust where we handle loading/generating the identity keys so that we can get it after...
I don't think this should be closed until #2168 is finalized with these capabilities.
> I'd argue if Fedora no longer supports it themselves it's time to move on. Yup, that's our same policy for the short-lived Ubuntu releases (20.10, 21.04, 21.10, 22.10, etc.):...
You'll need to add a `py::multiple_inheritance()` to your `py::class_` and `py::class_` constructors to tell pybind that simple inheritance assumptions won't work here: ```C++ py::class_(m, "B0", py::multiple_inheritance()) ```
In theory it ought to be possible to detect this sort of virtual inheritance and apply it automatically, using something along the lines of the second answer here: https://stackoverflow.com/questions/2893791/c-can-virtual-inheritance-be-detected-at-compile-time
Yes (except that we don't depend on `boost`, so we need our own implementation of `is_virtual_base_of` in detail/common.h).