summaryrefslogtreecommitdiff
path: root/protocols/Telegram/tdlib/td
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2023-06-07 21:12:45 +0300
committerGeorge Hazan <george.hazan@gmail.com>2023-06-07 21:12:45 +0300
commit41485625eeed7d42935c7f06157ae45be3aa76e3 (patch)
tree79d3f1b49e68420266f61f7d83eb41a711c56483 /protocols/Telegram/tdlib/td
parenta2a06f0dabca964ba98049fc68fab57aebbe8c5f (diff)
fixes #3390 (Telegram: не получается добавить бота, с которым уже было взаимодействие, но потом диалог был удален)
Diffstat (limited to 'protocols/Telegram/tdlib/td')
-rw-r--r--protocols/Telegram/tdlib/td/td/tl/TlObject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Telegram/tdlib/td/td/tl/TlObject.h b/protocols/Telegram/tdlib/td/td/tl/TlObject.h
index c1b363fc97..d6c9e1cd9d 100644
--- a/protocols/Telegram/tdlib/td/td/tl/TlObject.h
+++ b/protocols/Telegram/tdlib/td/td/tl/TlObject.h
@@ -39,14 +39,14 @@ class TlObject {
* Appends the object to the storer serializing object, a buffer of fixed length.
* \param[in] s Storer to which the object will be appended.
*/
- virtual void store(TlStorerUnsafe &s) const {
+ virtual void store(TlStorerUnsafe &) const {
}
/**
* Appends the object to the storer, calculating the TL-length of the serialized object.
* \param[in] s Storer to which the object will be appended.
*/
- virtual void store(TlStorerCalcLength &s) const {
+ virtual void store(TlStorerCalcLength &) const {
}
/**