From 72d004763448cbf5faa1a462b207b43e9d61182c Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Thu, 9 Nov 2023 09:18:21 -0800 Subject: [PATCH] fix incorrect parray usage --- src/Lobby.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Lobby.hh b/src/Lobby.hh index 025e1b72..f4ed8eda 100644 --- a/src/Lobby.hh +++ b/src/Lobby.hh @@ -97,7 +97,7 @@ struct Lobby : public std::enable_shared_from_this { uint32_t bitmask = 0; uint32_t seconds = 0; }; - parray rank_thresholds; + std::array rank_thresholds; }; std::shared_ptr challenge_params;