diff options
| author | Sadie Powell <sadie@witchery.services> | 2024-03-14 21:37:18 +0000 |
|---|---|---|
| committer | Sadie Powell <sadie@witchery.services> | 2024-03-14 21:37:18 +0000 |
| commit | 074dfb63a76efb905ad8592502585309299583dd (patch) | |
| tree | 71f38584a2085699c231cfa5aeb847defccc7160 /modules/global | |
| parent | beaf09de7bcb0042dfd8f388064126e511a5b28d (diff) | |
Fix a warning when building with Clang.
Diffstat (limited to 'modules/global')
| -rw-r--r-- | modules/global/global.cpp | 2 |
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()) |
