Record a note about the last hash-set.
Some checks failed
CI / ubuntu-latest-html-tests (push) Has been cancelled
CI / ubuntu-latest-no-tls (push) Has been cancelled
CI / ubuntu-latest-mbedtls2 (push) Has been cancelled
CI / ubuntu-latest-openssl-3 (push) Has been cancelled
CI / ubuntu-latest-with-old-std (push) Has been cancelled
CI / ubuntu-20-04-openssl-1-1 (push) Has been cancelled
CI / alpine-mbedtls-3_6_0 (push) Has been cancelled
CI / macOS-13-openssl-1-1 (push) Has been cancelled
CI / macOS-13-openssl-3 (push) Has been cancelled
CI / freebsd-14-openssl-3 (push) Has been cancelled
CI / windows-mbedtls (push) Has been cancelled

This commit is contained in:
2025-08-09 15:17:26 -04:00
parent 9dbf5ee536
commit 80aa7cb15d

View File

@ -266,6 +266,10 @@ struct Content
class StackingProcessingContext
{
private:
// This hash-set "owns" a bunch of entities that are passed to it via raw pointer form.
// But the entities seem to be passed in as `this` from the object itself.
//
// I'm delaying untangling that ownership thicket.
lout::container::typed::HashSet<lout::object::TypedPointer<Widget> >
*widgetsProcessedAsInterruption;