[*] Did I forget half-way through edcc9efac37919f25838f6cc66cdd32892492ff2?

This commit is contained in:
Reece Wilson 2023-08-12 14:15:51 +01:00
parent 6ec2fcc4b6
commit bde0014d16

View File

@ -327,10 +327,10 @@ private:
AuOptionalEx<AuAsync::WorkerPId_t> pid; // todo: make weak?
AuList<AuConsumer<bool, bool>> waterfall;
AuUInt8 bComplete {};
AuUInt8 bFailed {};
AuUInt8 bDone {};
AuUInt8 bDoneCb {};
AuUInt8 bComplete : 1 {};
AuUInt8 bFailed : 1 {};
AuUInt8 bDone : 1 {};
AuUInt8 bDoneCb : 1 {};
friend struct AuWaterfall;
};