diff options
author | George Hazan <ghazan@miranda.im> | 2022-12-05 15:29:28 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-12-05 15:29:28 +0300 |
commit | 1c7167406020c45856358a95c1ade1aa217dccd3 (patch) | |
tree | 1a583350e6b311e35638a0f37b5593845703b705 /protocols/Telegram/tdlib/td | |
parent | cf6686206e050f0e010f76e5ff33b1d8c1e20c5b (diff) |
Telegram: setting statuses
Diffstat (limited to 'protocols/Telegram/tdlib/td')
-rw-r--r-- | protocols/Telegram/tdlib/td/td/tl/TlObject.h | 4 |
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 60671ec10b..8248c29795 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 { } /** |