From 074dfb63a76efb905ad8592502585309299583dd Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Thu, 14 Mar 2024 21:37:18 +0000 Subject: [PATCH] Fix a warning when building with Clang. --- modules/global/global.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/global/global.cpp b/modules/global/global.cpp index 35177dcfd..b5c5a4a31 100644 --- a/modules/global/global.cpp +++ b/modules/global/global.cpp @@ -159,7 +159,7 @@ public: return true; } - bool Unqueue(NickCore *nc, size_t idx) + bool Unqueue(NickCore *nc, size_t idx) override { auto *q = queue.Get(nc); if (!q || idx > q->size())