summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2024-03-14 21:37:18 +0000
committerSadie Powell <sadie@witchery.services>2024-03-14 21:37:18 +0000
commit074dfb63a76efb905ad8592502585309299583dd (patch)
tree71f38584a2085699c231cfa5aeb847defccc7160 /modules
parentbeaf09de7bcb0042dfd8f388064126e511a5b28d (diff)
Fix a warning when building with Clang.
Diffstat (limited to 'modules')
-rw-r--r--modules/global/global.cpp2
1 files changed, 1 insertions, 1 deletions
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())