From bde0014d16feff4724ecab05ab3376bf316af2c6 Mon Sep 17 00:00:00 2001 From: Jamie Reece Wilson Date: Sat, 12 Aug 2023 14:15:51 +0100 Subject: [PATCH] [*] Did I forget half-way through edcc9efac37919f25838f6cc66cdd32892492ff2? --- Include/Aurora/Async/AuFutures.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Include/Aurora/Async/AuFutures.hpp b/Include/Aurora/Async/AuFutures.hpp index 8a98b27d..d70b3a44 100644 --- a/Include/Aurora/Async/AuFutures.hpp +++ b/Include/Aurora/Async/AuFutures.hpp @@ -327,10 +327,10 @@ private: AuOptionalEx pid; // todo: make weak? AuList> waterfall; - AuUInt8 bComplete {}; - AuUInt8 bFailed {}; - AuUInt8 bDone {}; - AuUInt8 bDoneCb {}; + AuUInt8 bComplete : 1 {}; + AuUInt8 bFailed : 1 {}; + AuUInt8 bDone : 1 {}; + AuUInt8 bDoneCb : 1 {}; friend struct AuWaterfall; };