mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 07:27:45 +00:00
LibTLS + LibCrypto: Suppress unobserved Optoinal<T> return values.
This commit is contained in:
parent
125eab998f
commit
9572c95152
3 changed files with 4 additions and 4 deletions
|
@ -129,7 +129,7 @@ public:
|
|||
virtual void decrypt(const ByteBuffer& in, ByteBuffer& out, Optional<ByteBuffer> ivec = {}) override
|
||||
{
|
||||
// XOR (and thus CTR) is the most symmetric mode.
|
||||
this->encrypt(in, out, ivec);
|
||||
(void)this->encrypt(in, out, ivec);
|
||||
}
|
||||
|
||||
private:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue