aboutsummaryrefslogtreecommitdiffhomepage
path: root/tdnet/td/net/HttpContentLengthByteFlow.h
diff options
context:
space:
mode:
authorlevlam <levlam@telegram.org>2021-07-03 23:51:36 +0300
committerlevlam <levlam@telegram.org>2021-07-03 23:51:36 +0300
commitedfa5d1d982a8d499877eb9fafc5192a0baa2974 (patch)
tree0badfea5d1ec8da265586cb737aaf3f1549d8b5c /tdnet/td/net/HttpContentLengthByteFlow.h
parent3ead565d675c0317abcfdb70b28eac3bb5659425 (diff)
Use final instead of override.
Diffstat (limited to 'tdnet/td/net/HttpContentLengthByteFlow.h')
-rw-r--r--tdnet/td/net/HttpContentLengthByteFlow.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tdnet/td/net/HttpContentLengthByteFlow.h b/tdnet/td/net/HttpContentLengthByteFlow.h
index 409b083ea..272374f08 100644
--- a/tdnet/td/net/HttpContentLengthByteFlow.h
+++ b/tdnet/td/net/HttpContentLengthByteFlow.h
@@ -15,7 +15,7 @@ class HttpContentLengthByteFlow final : public ByteFlowBase {
HttpContentLengthByteFlow() = default;
explicit HttpContentLengthByteFlow(size_t len) : len_(len) {
}
- bool loop() override;
+ bool loop() final;
private:
static constexpr size_t MIN_UPDATE_SIZE = 1 << 14;