diff options
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 { } /** |