diff options
| author | levlam <levlam@telegram.org> | 2021-07-04 18:52:48 +0300 |
|---|---|---|
| committer | levlam <levlam@telegram.org> | 2021-07-04 18:52:48 +0300 |
| commit | a4186f893401db4ab195eaf33fa98b270a78103c (patch) | |
| tree | df93f594b885ec65ca2b5e2bb993feb756763143 /tdutils/td/utils/queue.h | |
| parent | 370d443a9d5923e5143f03f230e36a485a3dd6bc (diff) | |
Fix BackoffQueue.
Diffstat (limited to 'tdutils/td/utils/queue.h')
| -rw-r--r-- | tdutils/td/utils/queue.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdutils/td/utils/queue.h b/tdutils/td/utils/queue.h index 15f200591..c0f419084 100644 --- a/tdutils/td/utils/queue.h +++ b/tdutils/td/utils/queue.h @@ -285,7 +285,7 @@ class SPSCChainQueue { }; template <class T, class QueueT = SPSCChainQueue<T>, class BackoffT = detail::Backoff> -class BackoffQueue final : public QueueT { +class BackoffQueue : public QueueT { public: using ValueType = T; |
