Andrew Auclair

Results 73 comments of Andrew Auclair

I fixed this, I just haven't published a 0.11.4 with the fix yet. This was a good reminder that I need to do that.

This is documented as such and appears to be by design. https://github.com/pocoproject/poco/blob/main/Foundation%2Finclude%2FPoco%2FOptional.h#L45

Why would you replace `std::optional` with `Poco::Optional`?

There is currently no setting to do that.

I guess that depends on exactly what you're asking for. Are you looking to allow docking to east/west/north/south but not center of each dockable? Or are you looking to have...

I see. There likely isn't a perfect solution for that type of thing. It's probably doable right now, but annoying. The RootDockingPanel really wants to allow docking in the whole...

Modern Docking isn't officially supported on MacOS (I don't have access to a system). Good to know that those changes at least partially fix it.

> May I ask you to add a notice about supported platforms somewhere on the documentation and/or in the README? I can do that. I think I meant to at...

`std::span` isn't valid. The proper way to do this stuff in C++17 is `std::span`. `std::byte` is the "correct" type to use for collections of bytes.

This is exactly what `std::byte` is for. Its underlying type is `unsigned char` and is not a character type or an arithmetic type. I guess `std::span` is locked in more...